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

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

Error that can happen while building a buffer texture.

Variants

BufferCreationError

Failed to create the buffer.

TextureCreationError

Failed to create the texture.

Trait Implementations

impl From<BufferCreationError> for CreationError

fn from(err: BufferCreationError) -> CreationError

impl From<TextureCreationError> for CreationError

fn from(err: TextureCreationError) -> CreationError

Derived Implementations

impl Debug for CreationError

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl Clone for CreationError

fn clone(&self) -> CreationError

fn clone_from(&mut self, source: &Self)

impl Copy for CreationError