[−][src]Enum html2md::NodeData
The different kinds of nodes in the DOM.
Variants
The Document itself - the root node of a HTML document.
A DOCTYPE with name, public id, and system id. See
document type declaration on wikipedia.
Fields of Doctype
A text node.
Fields of Text
contents: RefCell<Tendril<UTF8, NonAtomic>>A comment.
An element with attributes.
Fields of Element
name: QualNameattrs: RefCell<Vec<Attribute>>template_contents: Option<Rc<Node>>For HTML <template> elements, the template contents.
mathml_annotation_xml_integration_point: boolWhether the node is a HTML integration point.
A Processing instruction.
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for NodeData
impl !Send for NodeData
impl !Sync for NodeData
impl Unpin for NodeData
impl !UnwindSafe for NodeData
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,