Enum font_atlas_image::EncodingError [] [src]

pub enum EncodingError {
    ImageEncodingError(ImageError),
    BincodeEncodingError(EncodingError),
    IoError(Error),
}

Variants

ImageEncodingError(ImageError)BincodeEncodingError(EncodingError)IoError(Error)

Trait Implementations

impl Debug for EncodingError
[src]

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

Formats the value using the given formatter.

impl From<ImageError> for EncodingError
[src]

fn from(e: ImageError) -> EncodingError

Performs the conversion.

impl From<EncodingError> for EncodingError
[src]

fn from(e: EncodingError) -> EncodingError

Performs the conversion.

impl From<Error> for EncodingError
[src]

fn from(e: Error) -> EncodingError

Performs the conversion.

impl Error for EncodingError
[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 EncodingError
[src]

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

Formats the value using the given formatter.