Files
Notes/notes-service/vendor/schemars/tests/ui/example_fn.rs
T
2026-08-01 16:11:49 +03:00

10 lines
128 B
Rust

use schemars::JsonSchema;
#[derive(JsonSchema)]
#[schemars(example = "my_fn")]
pub struct Struct;
fn my_fn() {}
fn main() {}