json-schema-rs 0.0.1

A Rust library to generate Rust structs from JSON Schema.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[must_use]
pub fn temp(num: i32) -> i32 {
    num + num
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_temp() {
        assert_eq!(temp(1), 2);
    }
}