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 format;
5mod ident_path;
6mod module;
7
8pub use self::format::{
9    format_field_ident, format_module_ident, format_type_ident, format_variant_ident,
10};
11pub use self::ident_path::{IdentPath, InvalidIdentPath, ModuleIdent, ModulePath};
12pub use self::module::{Module, SubModules};