Enum yenc::EncodeError[][src]

pub enum EncodeError {
    PartNumberMissing,
    PartBeginOffsetMissing,
    PartEndOffsetMissing,
    PartOffsetsInvalidRange,
    IoError(Error),
}

Error enum for errors that can be encountered when validating the encode options or while encoding.

Variants

Multiple parts (parts > 1), but no part number specified

Multiple parts (parts > 1), but no begin offset specified

Multiple parts (parts > 1), but no end offset specified

Multiple parts (parts > 1), and begin offset larger than end offset

I/O Error

Trait Implementations

impl Debug for EncodeError
[src]

Formats the value using the given formatter. Read more

impl From<Error> for EncodeError
[src]

Performs the conversion.

impl Display for EncodeError
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for EncodeError

impl Sync for EncodeError