pub enum NodeData {
Document,
Doctype {
name: StrTendril,
public_id: StrTendril,
system_id: StrTendril,
},
Text {
contents: RefCell<StrTendril>,
},
Comment {
contents: StrTendril,
},
Element {
name: QualName,
attrs: RefCell<Vec<Attribute>>,
template_contents: RefCell<Option<Handle>>,
mathml_annotation_xml_integration_point: bool,
},
ProcessingInstruction {
target: StrTendril,
contents: StrTendril,
},
}
Expand description
The different kinds of nodes in the DOM.
Variants§
Document
The Document
itself - the root node of a HTML document.
Doctype
A DOCTYPE
with name, public id, and system id. See
document type declaration on wikipedia.
Text
A text node.
Fields
§
contents: RefCell<StrTendril>
Comment
A comment.
Fields
§
contents: StrTendril
Element
An element with attributes.
Fields
§
template_contents: RefCell<Option<Handle>>
For HTML <template> elements, the template contents.
§
mathml_annotation_xml_integration_point: bool
Whether the node is a HTML integration point.
ProcessingInstruction
A Processing instruction.
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for NodeData
impl !RefUnwindSafe for NodeData
impl !Send for NodeData
impl !Sync for NodeData
impl Unpin for NodeData
impl !UnwindSafe for NodeData
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