Enum pandoc::PandocError [] [src]

pub enum PandocError {
    BadUtf8Conversion(usize),
    IoErr(Error),
    Err(Output),
    NoOutputSpecified,
    NoInputSpecified,
    PandocNotFound,
}

Possible errors that can occur before or during pandoc execution

Variants

conversion from UTF-8 failed; includes valid-up-to byte count.

some kind of IO-Error

pandoc execution failed, look at the stderr output

forgot to specify an output file

forgot to specify any input files

pandoc executable not found

Trait Implementations

impl From<Error> for PandocError
[src]

Performs the conversion.

impl From<Utf8Error> for PandocError
[src]

Performs the conversion.

impl Debug for PandocError
[src]

Formats the value using the given formatter.