Enum gl_utils::texture::LoadError[][src]

pub enum LoadError {
    IoError(Error),
    ImageError(ImageError),
    TextureCreationError(TextureCreationError),
}

Variants

Trait Implementations

impl Debug for LoadError
[src]

Formats the value using the given formatter. Read more

impl Display for LoadError
[src]

Formats the value using the given formatter. Read more

impl Error for LoadError
[src]

This method is soft-deprecated. Read more

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

impl From<Error> for LoadError
[src]

Performs the conversion.

impl From<ImageError> for LoadError
[src]

Performs the conversion.

impl From<TextureCreationError> for LoadError
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for LoadError

impl Sync for LoadError