Skip to main content

NodeType

Enum NodeType 

Source
pub enum NodeType {
Show 30 variants Html, Head, Style, Link, Script, Meta, Title, Body, H1, H2, H3, H4, H5, H6, P, Div, Strong, Em, A, Ul, Ol, Li, Pre, Code, Hr, Br, Blockquote, Text, Comment, Unknown(String),
}
Expand description

Represents the different types of HTML elements that the library supports.

Variants§

§

Html

Document root (html).

§

Head

Document metadata container (head).

§

Style

Embedded CSS (style).

External resource link (link).

§

Script

Embedded script (script).

§

Meta

Metadata (meta).

§

Title

Document title (title).

§

Body

Document body (body).

§

H1

Level-one heading (h1).

§

H2

Level-two heading (h2).

§

H3

Level-three heading (h3).

§

H4

Level-four heading (h4).

§

H5

Level-five heading (h5).

§

H6

Level-six heading (h6).

§

P

Paragraph (p).

§

Div

Generic block container (div).

§

Strong

Strong importance (strong).

§

Em

Emphasis (em).

§

A

Link (a).

§

Ul

Unordered list (ul).

§

Ol

Ordered list (ol).

§

Li

List item (li).

§

Pre

Preformatted block (pre).

§

Code

Code (code).

§

Hr

Thematic break (hr).

§

Br

Line break (br).

§

Blockquote

Block quotation (blockquote).

§

Text

Plain text content.

§

Comment

HTML comment.

§

Unknown(String)

Unsupported tag, retaining the name lowercased by the parser.

Implementations§

Source§

impl NodeType

Source

pub fn is_special_tag(&self) -> bool

Returns whether this tag affects descendant list or quote formatting.

Source

pub fn from_tag_str(input: &str) -> Self

Converts an HTML tag name into its supported node type.

Trait Implementations§

Source§

impl Clone for NodeType

Source§

fn clone(&self) -> NodeType

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for NodeType

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for NodeType

Source§

fn default() -> NodeType

Returns the “default value” for a type. Read more
Source§

impl Eq for NodeType

Source§

impl PartialEq for NodeType

Source§

fn eq(&self, other: &NodeType) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for NodeType

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.