pub enum Xml {
ElementNode(Element),
CharacterNode(String),
CDATANode(String),
CommentNode(String),
PINode(String),
}
Expand description
An Enum describing a XML Node
Variants§
ElementNode(Element)
An XML Element
CharacterNode(String)
Character Data
CDATANode(String)
CDATA
CommentNode(String)
A XML Comment
PINode(String)
Processing Information
Trait Implementations§
impl StructuralPartialEq for Xml
Auto Trait Implementations§
impl Freeze for Xml
impl RefUnwindSafe for Xml
impl Send for Xml
impl Sync for Xml
impl Unpin for Xml
impl UnwindSafe for Xml
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)