Enum nannou::ui::backend::glium::glium::texture::TextureCreationError[][src]

pub enum TextureCreationError {
    FormatNotSupported,
    DimensionsNotSupported,
    TypeNotSupported,
}

Error that can happen when creating a texture.

Variants

The requested format is not supported by the backend.

The requested texture dimensions are not supported.

The texture format is not supported by the backend.

Trait Implementations

impl Clone for TextureCreationError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for TextureCreationError
[src]

Formats the value using the given formatter. Read more

impl From<FormatNotSupportedError> for TextureCreationError
[src]

Performs the conversion.

impl Error for TextureCreationError
[src]

This method is soft-deprecated. Read more

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

impl Display for TextureCreationError
[src]

Formats the value using the given formatter. Read more

impl Copy for TextureCreationError
[src]

impl Eq for TextureCreationError
[src]

impl PartialEq<TextureCreationError> for TextureCreationError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl From<TextureCreationError> for RendererCreationError
[src]

Performs the conversion.

Auto Trait Implementations