Enum plist::Error [] [src]

pub enum Error {
    InvalidData,
    UnexpectedEof,
    Io(IoError),
    Serde(String),
}

Variants

Trait Implementations

impl From<FromUtf8Error> for Error
[src]

Performs the conversion.

impl From<FromUtf16Error> for Error
[src]

Performs the conversion.

impl From<ChronoParseError> for Error
[src]

Performs the conversion.

impl From<XmlWriterError> for Error
[src]

Performs the conversion.

impl SerdeError for Error
[src]

Raised when there is general error when deserializing a type.

Raised when a Deserialize type unexpectedly hit the end of the stream.

Raised when a Deserialize was passed an incorrect type.

Raised when a Deserialize was passed an incorrect value.

Raised when a fixed sized sequence or map was passed in the wrong amount of arguments. Read more

Raised when a Deserialize enum type received an unexpected variant.

Raised when a Deserialize struct type received an unexpected struct field.

raised when a deserialize struct type did not receive a field.

Raised when a Deserialize struct type received more than one of the same struct field. Read more

impl SerdeError for Error
[src]

Raised when there is general error when deserializing a type.

Raised when a Serialize was passed an incorrect value.

impl Debug for Error
[src]

Formats the value using the given formatter.

impl Error for Error
[src]

A short description of the error. Read more

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

impl Display for Error
[src]

Formats the value using the given formatter.

impl From<IoError> for Error
[src]

Performs the conversion.