pub enum StringChildren<'tree> {
EscapeSequence(Box<EscapeSequence<'tree>>),
HtmlCharacterReference(Box<HtmlCharacterReference<'tree>>),
StringFragment(Box<StringFragment<'tree>>),
}Variants§
EscapeSequence(Box<EscapeSequence<'tree>>)
HtmlCharacterReference(Box<HtmlCharacterReference<'tree>>)
StringFragment(Box<StringFragment<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for StringChildren<'tree>
impl<'tree> Clone for StringChildren<'tree>
Source§fn clone(&self) -> StringChildren<'tree>
fn clone(&self) -> StringChildren<'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 StringChildren<'tree>
impl<'tree> Debug for StringChildren<'tree>
Source§impl<'tree> FromNode<'tree> for StringChildren<'tree>
impl<'tree> FromNode<'tree> for StringChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for StringChildren<'tree>
impl<'tree> RefUnwindSafe for StringChildren<'tree>
impl<'tree> Send for StringChildren<'tree>
impl<'tree> Sync for StringChildren<'tree>
impl<'tree> Unpin for StringChildren<'tree>
impl<'tree> UnsafeUnpin for StringChildren<'tree>
impl<'tree> UnwindSafe for StringChildren<'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