Enum font_atlas_image::DecodingError [] [src]

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

Variants

ImageDecodingError
BincodeDecodingError
IoError

Trait Implementations

impl From<ImageError> for DecodingError

fn from(e: ImageError) -> DecodingError

impl From<DecodingError> for DecodingError

fn from(e: DecodingError) -> DecodingError

impl From<Error> for DecodingError

fn from(e: Error) -> DecodingError

impl Error for DecodingError

fn description(&self) -> &str

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

impl Display for DecodingError

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

Derived Implementations

impl Debug for DecodingError

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