schema_analysis 0.6.0

Analyze the schema of any self describing format
Documentation
1
2
3
4
5
6
7
8
9
10
11
use serde_derive::Deserialize;
use serde_derive::Serialize;

#[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct Root {
    pub name: String,
    pub age: i64,
    pub active: bool,
    pub scores: Vec<i64>,
}