pub enum ElementTree {
Normal(Element),
Master(MasterElement),
}Expand description
An Element Tree can either be a leaf or a Master element.
Variants§
Normal(Element)
A Normal Element that represents a leaf in the tree
Master(MasterElement)
A Master Element contains more elements.
Trait Implementations§
Source§impl Debug for ElementTree
impl Debug for ElementTree
Source§impl PartialEq for ElementTree
impl PartialEq for ElementTree
Source§impl Serialize for ElementTree
impl Serialize for ElementTree
impl StructuralPartialEq for ElementTree
Auto Trait Implementations§
impl Freeze for ElementTree
impl RefUnwindSafe for ElementTree
impl Send for ElementTree
impl Sync for ElementTree
impl Unpin for ElementTree
impl UnwindSafe for ElementTree
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