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
pub type RootElement = RootElementType;
#[derive(Debug)]
pub struct RootElementType {
    pub my_element: RootElementMyElementType,
}
#[derive(Debug)]
pub struct RootElementMyElementType {
    pub my_element: RootElementMyElementMyElementType,
}
#[derive(Debug)]
pub struct RootElementMyElementMyElementType {
    pub created_date: RecordDateType,
}
#[derive(Debug)]
pub struct RecordDateType {
    pub record_date: String,
}