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
14
15
16
17
18
pub type Container = ContainerType;
#[derive(Debug)]
pub struct ContainerType {
    pub content_2: Vec<ContainerContent2Type>,
}
#[derive(Debug)]
pub enum ContainerContent2Type {
    Foo(String),
    Content3(ContainerContent3Type),
}
#[derive(Debug)]
pub struct ContainerContent3Type {
    pub content_4: Vec<ContainerContent4Type>,
}
#[derive(Debug)]
pub enum ContainerContent4Type {
    Bar(String),
}