xsd_parser/traits/
mod.rs

1//! The `traits` module defines different public traits that are not specific to
2//! a special module and are used generally in `xsd-parser`
3
4mod naming;
5mod vec_helper;
6
7pub use naming::{NameBuilder, NameBuilderExt, NameFallback, Naming};
8pub use vec_helper::{VecHelper, WithIdent};