pub struct XmlSchema {
pub items: Vec<XsdFileItem>,
pub target_namespace: Option<String>,
pub version: Option<String>,
}Expand description
Type representing a full XmlSchema file.
Fields§
§items: Vec<XsdFileItem>Top level items.
target_namespace: Option<String>Target namespace.
version: Option<String>Schema version.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for XmlSchema
impl RefUnwindSafe for XmlSchema
impl Send for XmlSchema
impl Sync for XmlSchema
impl Unpin for XmlSchema
impl UnwindSafe for XmlSchema
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more