pub enum ElementChildren<'tree> {
Doctype(Box<Doctype<'tree>>),
Element(Box<Element<'tree>>),
EndTag(Box<EndTag<'tree>>),
Entity(Box<Entity<'tree>>),
ErroneousEndTag(Box<ErroneousEndTag<'tree>>),
ScriptElement(Box<ScriptElement<'tree>>),
SelfClosingTag(Box<SelfClosingTag<'tree>>),
StartTag(Box<StartTag<'tree>>),
StyleElement(Box<StyleElement<'tree>>),
Text(Box<Text<'tree>>),
}Variants§
Doctype(Box<Doctype<'tree>>)
Element(Box<Element<'tree>>)
EndTag(Box<EndTag<'tree>>)
Entity(Box<Entity<'tree>>)
ErroneousEndTag(Box<ErroneousEndTag<'tree>>)
ScriptElement(Box<ScriptElement<'tree>>)
SelfClosingTag(Box<SelfClosingTag<'tree>>)
StartTag(Box<StartTag<'tree>>)
StyleElement(Box<StyleElement<'tree>>)
Text(Box<Text<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for ElementChildren<'tree>
impl<'tree> Clone for ElementChildren<'tree>
Source§fn clone(&self) -> ElementChildren<'tree>
fn clone(&self) -> ElementChildren<'tree>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'tree> Debug for ElementChildren<'tree>
impl<'tree> Debug for ElementChildren<'tree>
Source§impl<'tree> FromNode<'tree> for ElementChildren<'tree>
impl<'tree> FromNode<'tree> for ElementChildren<'tree>
Source§impl<'tree> PartialEq for ElementChildren<'tree>
impl<'tree> PartialEq for ElementChildren<'tree>
Source§impl Spanned for ElementChildren<'_>
impl Spanned for ElementChildren<'_>
impl<'tree> Eq for ElementChildren<'tree>
impl<'tree> StructuralPartialEq for ElementChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for ElementChildren<'tree>
impl<'tree> RefUnwindSafe for ElementChildren<'tree>
impl<'tree> Send for ElementChildren<'tree>
impl<'tree> Sync for ElementChildren<'tree>
impl<'tree> Unpin for ElementChildren<'tree>
impl<'tree> UnsafeUnpin for ElementChildren<'tree>
impl<'tree> UnwindSafe for ElementChildren<'tree>
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