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, provide output from stderr

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. Read more

impl Display for PandocError
[src]

Formats the value using the given formatter. Read more

impl Error for PandocError
[src]

This method is soft-deprecated. Read more

The lower-level cause of this error, if any. Read more

Auto Trait Implementations

impl Send for PandocError

impl Sync for PandocError