20 lines
406 B
Rust
20 lines
406 B
Rust
|
|
use schemars::{schema_for, JsonSchema};
|
||
|
|
|
||
|
|
#[derive(JsonSchema)]
|
||
|
|
pub struct MyStruct {
|
||
|
|
pub my_int: i32,
|
||
|
|
pub my_bool: bool,
|
||
|
|
pub my_nullable_enum: Option<MyEnum>,
|
||
|
|
}
|
||
|
|
|
||
|
|
#[derive(JsonSchema)]
|
||
|
|
pub enum MyEnum {
|
||
|
|
StringNewType(String),
|
||
|
|
StructVariant { floats: Vec<f32> },
|
||
|
|
}
|
||
|
|
|
||
|
|
fn main() {
|
||
|
|
let schema = schema_for!(MyStruct);
|
||
|
|
println!("{}", serde_json::to_string_pretty(&schema).unwrap());
|
||
|
|
}
|