pub(crate) enum NodeKind<'input> {
Root,
Element {
tag_name: ExpandedNameIndexed<'input>,
attributes: ShortRange,
namespaces: ShortRange,
},
PI(PI<'input>),
Comment(StringStorage<'input>),
Text(StringStorage<'input>),
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<'input> Freeze for NodeKind<'input>
impl<'input> RefUnwindSafe for NodeKind<'input>
impl<'input> Send for NodeKind<'input>
impl<'input> Sync for NodeKind<'input>
impl<'input> Unpin for NodeKind<'input>
impl<'input> UnwindSafe for NodeKind<'input>
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