Enum dds::ParseError [] [src]

pub enum ParseError {
    IO(Error),
    Deserialize(Box<ErrorKind>),
    Parse(String),
}

Represents an error encountered while parsing a DDS file

Variants

Trait Implementations

impl Debug for ParseError
[src]

Formats the value using the given formatter.

impl From<Error> for ParseError
[src]

Performs the conversion.

impl<'a> From<&'a str> for ParseError
[src]

Performs the conversion.

impl From<String> for ParseError
[src]

Performs the conversion.

impl From<Box<ErrorKind>> for ParseError
[src]

Performs the conversion.