Enum pandoc_ast::MetaValue [] [src]

pub enum MetaValue {
    MetaMap(Map<String, Box<MetaValue>>),
    MetaList(Vec<MetaValue>),
    MetaBool(bool),
    MetaString(String),
    MetaInlines(Vec<Inline>),
    MetaBlocks(Vec<Block>),
}

Variants

Trait Implementations

impl Debug for MetaValue
[src]

Formats the value using the given formatter.

impl Clone for MetaValue
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for MetaValue
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.