Enum dds::ParseError
[−]
[src]
pub enum ParseError {
IO(Error),
Deserialize(Box<ErrorKind>),
Parse(String),
}Represents an error encountered while parsing a DDS file
Variants
IO(Error)Deserialize(Box<ErrorKind>)Parse(String)Trait Implementations
impl Debug for ParseError[src]
impl From<Error> for ParseError[src]
fn from(err: Error) -> ParseError
Performs the conversion.
impl<'a> From<&'a str> for ParseError[src]
fn from(err: &'a str) -> ParseError
Performs the conversion.
impl From<String> for ParseError[src]
fn from(err: String) -> ParseError
Performs the conversion.
impl From<Box<ErrorKind>> for ParseError[src]
fn from(err: Box<ErrorKind>) -> ParseError
Performs the conversion.