xsd-parser 1.5.2

Rust code generator for XML schema files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[derive(Debug)]
pub struct OuterType {
    pub bar_inner: OuterBarInnerType,
    pub baz_inner: OuterBazInnerType,
}
#[derive(Debug)]
pub struct OuterBarInnerType {
    pub a: String,
}
#[derive(Debug)]
pub struct OuterBazInnerType {
    pub b: String,
}