[go: up one dir, main page]

Enum gfx::BufferError []

pub enum BufferError {
    UnsupportedBind(Bind),
    Other,
}

Error creating a buffer.

Variants

Some of the bind flags are not supported.

Unknown other error.

Trait Implementations

impl PartialEq<BufferError> for BufferError

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

This method tests for !=.

impl Hash for BufferError

impl Error for BufferError

A short description of the error. Read more

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

impl Clone for BufferError

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for BufferError

Formats the value using the given formatter.

impl Display for BufferError

Formats the value using the given formatter.

impl Eq for BufferError

impl Copy for BufferError