Enum gfx::BufferError []

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

Error creating a buffer.

Variants

UnsupportedBind(Bind)

Some of the bind flags are not supported.

Other

Unknown other error.

Trait Implementations

impl PartialEq<BufferError> for BufferError

fn eq(&self, __arg_0: &BufferError) -> bool

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

fn ne(&self, __arg_0: &BufferError) -> bool

This method tests for !=.

impl Hash for BufferError

fn hash<__H>(&self, __arg_0: &mut __H) where __H: Hasher

impl Eq for BufferError

impl Debug for BufferError

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

Formats the value using the given formatter.

impl Copy for BufferError

impl Clone for BufferError

fn clone(&self) -> BufferError

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more

impl Display for BufferError

fn fmt(&self, f: &mut Formatter) -> Result<()Error>

Formats the value using the given formatter.

impl Error for BufferError

fn description(&self) -> &str

A short description of the error. Read more

fn cause(&self) -> Option<&Error>
1.0.0

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