json-schema-rs 0.0.1

A Rust library to generate Rust structs from JSON Schema.
Documentation
1
2
3
4
5
6
use json_schema_rs::temp;

fn main() {
    let result: i32 = temp(1);
    println!("Result: {}", result);
}