[][src]Struct comrak::nodes::NodeCodeBlock

pub struct NodeCodeBlock {
    pub fenced: bool,
    pub fence_char: u8,
    pub fence_length: usize,
    pub info: Vec<u8>,
    pub literal: Vec<u8>,
    // some fields omitted
}

The metadata and data of a code block (fenced or indented).

Fields

fenced: bool

Whether the code block is fenced.

fence_char: u8

For fenced code blocks, the fence character itself (` or ~).

fence_length: usize

For fenced code blocks, the length of the fence.

info: Vec<u8>

For fenced code blocks, the info string after the opening fence, if any.

literal: Vec<u8>

The literal contents of the code block. As the contents are not interpreted as Markdown at all, they are contained within this structure, rather than inserted into a child inline of any kind.

Trait Implementations

impl Default for NodeCodeBlock[src]

impl Clone for NodeCodeBlock[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for NodeCodeBlock[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]