Enum comrak::NodeValue [] [src]

pub enum NodeValue {
    Document,
    BlockQuote,
    List(NodeList),
    Item(NodeList),
    CodeBlock(NodeCodeBlock),
    HtmlBlock(NodeHtmlBlock),
    CustomBlock,
    Paragraph,
    Heading(NodeHeading),
    ThematicBreak,
    Table(Vec<TableAlignment>),
    TableRow(bool),
    TableCell,
    Text(String),
    SoftBreak,
    LineBreak,
    Code(String),
    HtmlInline(String),
    CustomInline,
    Emph,
    Strong,
    Strikethrough,
    Link(NodeLink),
    Image(NodeLink),
}

Variants

Methods

impl NodeValue
[src]

Trait Implementations

impl Debug for NodeValue
[src]

Formats the value using the given formatter.

impl Clone for NodeValue
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more