pub enum INodeType {
Element = 1,
Text = 3,
XMLCDATA = 4,
Comment = 8,
Document = 9,
HTMLDOCTYPE = 10,
DocumentFragement = 11,
Other = 14,
}
Variants§
Element = 1
Text = 3
XMLCDATA = 4
Comment = 8
Document = 9
HTMLDOCTYPE = 10
DocumentFragement = 11
Other = 14
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for INodeType
impl RefUnwindSafe for INodeType
impl Send for INodeType
impl Sync for INodeType
impl Unpin for INodeType
impl UnwindSafe for INodeType
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