Enum pandoc::PandocOutput[][src]

pub enum PandocOutput {
    ToFile(PathBuf),
    ToBuffer(String),
}

The output from Pandoc: the file written to, or a buffer with its output.

Variants

The results of the pandoc operation are stored in Path

The results of the pandoc operation are returned as a String

Auto Trait Implementations