Enum font_atlas_image::DecodingError [] [src]

pub enum DecodingError {
    ImageDecodingError(ImageError),
    BincodeDecodingError(DecodingError),
    IoError(Error),
}

Variants

ImageDecodingError(ImageError)BincodeDecodingError(DecodingError)IoError(Error)

Trait Implementations

impl Debug for DecodingError
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl From<ImageError> for DecodingError
[src]

fn from(e: ImageError) -> DecodingError

Performs the conversion.

impl From<DecodingError> for DecodingError
[src]

fn from(e: DecodingError) -> DecodingError

Performs the conversion.

impl From<Error> for DecodingError
[src]

fn from(e: Error) -> DecodingError

Performs the conversion.

impl Error for DecodingError
[src]

fn description(&self) -> &str

A short description of the error. Read more

fn cause(&self) -> Option<&Error>
1.0.0

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

impl Display for DecodingError
[src]

fn fmt(&self, formatter: &mut Formatter) -> Result

Formats the value using the given formatter.