Enum pulldown_cmark::Tag

source ·
pub enum Tag<'a> {
Show 18 variants Paragraph, Heading { level: HeadingLevel, id: Option<CowStr<'a>>, classes: Vec<CowStr<'a>>, attrs: Vec<(CowStr<'a>, Option<CowStr<'a>>)>, }, BlockQuote, CodeBlock(CodeBlockKind<'a>), HtmlBlock, List(Option<u64>), Item, FootnoteDefinition(CowStr<'a>), Table(Vec<Alignment>), TableHead, TableRow, TableCell, Emphasis, Strong, Strikethrough, Link { link_type: LinkType, dest_url: CowStr<'a>, title: CowStr<'a>, id: CowStr<'a>, }, Image { link_type: LinkType, dest_url: CowStr<'a>, title: CowStr<'a>, id: CowStr<'a>, }, MetadataBlock(MetadataBlockKind),
}
Expand description

Tags for elements that can contain other elements.

Variants§

§

Paragraph

A paragraph of text and other inline elements.

§

Heading

A heading, with optional identifier, classes and custom attributes. The identifier is prefixed with # and the last one in the attributes list is chosen, classes are prefixed with . and custom attributes have no prefix and can optionally have a value (myattr or myattr=myvalue).

Fields

§id: Option<CowStr<'a>>
§classes: Vec<CowStr<'a>>
§attrs: Vec<(CowStr<'a>, Option<CowStr<'a>>)>

The first item of the tuple is the attr and second one the value.

§

BlockQuote

§

CodeBlock(CodeBlockKind<'a>)

A code block.

§

HtmlBlock

A HTML block.

§

List(Option<u64>)

A list. If the list is ordered the field indicates the number of the first item. Contains only list items.

§

Item

A list item.

§

FootnoteDefinition(CowStr<'a>)

A footnote definition. The value contained is the footnote’s label by which it can be referred to.

§

Table(Vec<Alignment>)

A table. Contains a vector describing the text-alignment for each of its columns.

§

TableHead

A table header. Contains only TableCells. Note that the table body starts immediately after the closure of the TableHead tag. There is no TableBody tag.

§

TableRow

A table row. Is used both for header rows as body rows. Contains only TableCells.

§

TableCell

§

Emphasis

§

Strong

§

Strikethrough

A link.

Fields

§link_type: LinkType
§dest_url: CowStr<'a>
§title: CowStr<'a>
§id: CowStr<'a>

Identifier of reference links, e.g. world in the link [hello][world].

§

Image

An image. The first field is the link type, the second the destination URL and the third is a title, the fourth is the link identifier.

Fields

§link_type: LinkType
§dest_url: CowStr<'a>
§title: CowStr<'a>
§id: CowStr<'a>

Identifier of reference links, e.g. world in the link [hello][world].

§

MetadataBlock(MetadataBlockKind)

A metadata block.

Implementations§

source§

impl<'a> Tag<'a>

source

pub fn to_end(&self) -> TagEnd

Trait Implementations§

source§

impl<'a> Clone for Tag<'a>

source§

fn clone(&self) -> Tag<'a>

Returns a copy of the value. Read more
1.0.0 · source§

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

Performs copy-assignment from source. Read more
source§

impl<'a> Debug for Tag<'a>

source§

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

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

impl<'a> From<Tag<'a>> for TagEnd

source§

fn from(value: Tag<'_>) -> Self

Converts to this type from the input type.
source§

impl<'a> PartialEq for Tag<'a>

source§

fn eq(&self, other: &Tag<'a>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<'a> StructuralPartialEq for Tag<'a>

Auto Trait Implementations§

§

impl<'a> Freeze for Tag<'a>

§

impl<'a> RefUnwindSafe for Tag<'a>

§

impl<'a> Send for Tag<'a>

§

impl<'a> Sync for Tag<'a>

§

impl<'a> Unpin for Tag<'a>

§

impl<'a> UnwindSafe for Tag<'a>

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> 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,

§

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>,

§

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>,

§

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.