xsd_parser/models/code/
mod.rs

1//! The `code` module contains types and helper methods to format and manage the
2//! code generated by this crate.
3
4mod ident_path;
5mod module;
6
7pub use self::ident_path::{IdentPath, InvalidIdentPath, ModuleIdent, ModulePath};
8pub use self::module::{Module, SubModules};