[][src]Struct pandoc_ast::Pandoc

pub struct Pandoc {
    pub meta: Map<String, MetaValue>,
    pub blocks: Vec<Block>,
    pub pandoc_api_version: Vec<u32>,
}

the root object of a pandoc document

Fields

meta: Map<String, MetaValue>blocks: Vec<Block>pandoc_api_version: Vec<u32>

Trait Implementations

impl Clone for Pandoc[src]

impl Debug for Pandoc[src]

impl<'de> Deserialize<'de> for Pandoc[src]

impl PartialEq<Pandoc> for Pandoc[src]

impl Serialize for Pandoc[src]

impl StructuralPartialEq for Pandoc[src]

Auto Trait Implementations

impl RefUnwindSafe for Pandoc

impl Send for Pandoc

impl Sync for Pandoc

impl Unpin for Pandoc

impl UnwindSafe for Pandoc

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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