Enum glium::texture::buffer_texture::CreationError [] [src]

pub enum CreationError {
    BufferCreationError(BufferCreationError),
    TextureCreationError(TextureCreationError),
}

Error that can happen while building a buffer texture.

Variants

Failed to create the buffer.

Failed to create the texture.

Trait Implementations

impl Copy for CreationError
[src]

impl Clone for CreationError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for CreationError
[src]

[src]

Formats the value using the given formatter.

impl Display for CreationError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for CreationError
[src]

[src]

A short description of the error. Read more

[src]

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

impl From<BufferCreationError> for CreationError
[src]

[src]

Performs the conversion.

impl From<TextureCreationError> for CreationError
[src]

[src]

Performs the conversion.