12 lines
185 B
Rust
12 lines
185 B
Rust
use schemars::JsonSchema;
|
|
|
|
struct DoesNotImplJsonSchema;
|
|
|
|
#[derive(JsonSchema)]
|
|
#[schemars(rename = "} } {T} {U} {T::test} } {T")]
|
|
pub struct Struct1<T> {
|
|
pub t: T,
|
|
}
|
|
|
|
fn main() {}
|