Enum gl_utils::texture::LoadError [−][src]
pub enum LoadError {
IoError(Error),
ImageError(ImageError),
TextureCreationError(TextureCreationError),
}Variants
IoError(Error)ImageError(ImageError)TextureCreationError(TextureCreationError)
Trait Implementations
impl Debug for LoadError[src]
impl Debug for LoadErrorfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Display for LoadError[src]
impl Display for LoadErrorfn fmt(&self, fmt: &mut Formatter) -> Result[src]
fn fmt(&self, fmt: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Error for LoadError[src]
impl Error for LoadErrorfn description(&self) -> &str[src]
fn description(&self) -> &strThis method is soft-deprecated. Read more
fn cause(&self) -> Option<&Error>[src]
fn cause(&self) -> Option<&Error>The lower-level cause of this error, if any. Read more
impl From<Error> for LoadError[src]
impl From<Error> for LoadErrorimpl From<ImageError> for LoadError[src]
impl From<ImageError> for LoadErrorimpl From<TextureCreationError> for LoadError[src]
impl From<TextureCreationError> for LoadError