pub enum Xml {
Element(XmlElement),
Text(XmlText),
}Expand description
An return type from XML elements retrieval methods. It’s an enum of all supported values, that can be nested inside of XmlElement. These are other XmlElements or XmlText values.
Variants
Element(XmlElement)
Text(XmlText)
Trait Implementations
sourceimpl TryInto<XmlElement> for Xml
impl TryInto<XmlElement> for Xml
impl Eq for Xml
impl StructuralEq for Xml
impl StructuralPartialEq for Xml
Auto Trait Implementations
impl !RefUnwindSafe for Xml
impl !Send for Xml
impl !Sync for Xml
impl Unpin for Xml
impl !UnwindSafe for Xml
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more