clayers_xml/rnc/mod.rs
1//! RNC (RELAX NG Compact) data model and XSD-to-RNC conversion.
2
3mod convert;
4mod model;
5
6pub use convert::xsd_to_rnc;
7pub use model::{
8 wrap_comment, RncAttribute, RncBodyItem, RncElement, RncEnumSummary, RncGlobalElement,
9 RncLayer, RncNamespace, RncPattern, RncQuantifier, RncSchema,
10};