Enum nannou::ui::backend::glium::glium::buffer::BufferCreationError[][src]

pub enum BufferCreationError {
    OutOfMemory,
    BufferTypeNotSupported,
}

Error that can happen when creating a buffer.

Variants

Not enough memory to create the buffer.

This type of buffer is not supported.

Trait Implementations

impl Clone for BufferCreationError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for BufferCreationError
[src]

Formats the value using the given formatter. Read more

impl From<BufferCreationError> for CreationError
[src]

Performs the conversion.

impl From<BufferCreationError> for CreationError
[src]

Performs the conversion.

impl From<BufferCreationError> for CreationError
[src]

Performs the conversion.

impl Error for BufferCreationError
[src]

This method is soft-deprecated. Read more

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

impl Display for BufferCreationError
[src]

Formats the value using the given formatter. Read more

impl Copy for BufferCreationError
[src]

Auto Trait Implementations