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 Copy for TextureCreationError
[src]

impl Error for TextureCreationError
[src]

[src]

A short description of the error. Read more

1.0.0
[src]

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

impl PartialEq<TextureCreationError> for TextureCreationError
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl Clone for TextureCreationError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Display for TextureCreationError
[src]

[src]

Formats the value using the given formatter. Read more

impl Eq for TextureCreationError
[src]

impl From<FormatNotSupportedError> for TextureCreationError
[src]

[src]

Performs the conversion.

impl Debug for TextureCreationError
[src]

[src]

Formats the value using the given formatter. Read more

impl From<TextureCreationError> for RendererCreationError
[src]

[src]

Performs the conversion.

Auto Trait Implementations