schemars 0.8.3

Generate JSON Schemas from Rust code
Documentation
1
2
3
4
5
6
7
8
mod util;
use util::*;
use uuid::Uuid;

#[test]
fn uuid() -> TestResult {
    test_default_generated_schema::<Uuid>("uuid")
}