xsd_parser/schema/
xs.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![allow(
    missing_docs,
    unused_imports,
    clippy::large_enum_variant,
    clippy::redundant_field_names,
    clippy::single_match,
    clippy::too_many_lines,
    clippy::wildcard_imports
)]

use super::{MaxOccurs, QName};

pub type Use = AttributeUseType;

include!("./xs_generated.rs");