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

pub enum BufferCreationError {
    IndexTypeNotSupported,
    PrimitiveTypeNotSupported,
    BufferCreationError(BufferCreationError),
}

Error that can happen while creating an index buffer.

Variants

The type of index is not supported by the backend.

The type of primitives is not supported by the backend.

An error happened while creating the buffer.

Trait Implementations

impl Clone for CreationError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for CreationError
[src]

Formats the value using the given formatter. Read more

impl From<BufferCreationError> for CreationError
[src]

Performs the conversion.

impl Error for CreationError
[src]

This method is soft-deprecated. Read more

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

impl Display for CreationError
[src]

Formats the value using the given formatter. Read more

impl Copy for CreationError
[src]

impl From<BufferCreationError> for BufferCreationError
[src]

Performs the conversion.

impl From<BufferCreationError> for RendererDrawError
[src]

Performs the conversion.

Auto Trait Implementations