schemars 1.2.1

Generate JSON Schemas from Rust code
Documentation
1
2
3
4
5
6
7
8
use schemars::JsonSchema_repr;

#[derive(JsonSchema_repr)]
pub enum Enum {
    Unit,
}

fn main() {}