Enum glium::vertex::BufferCreationError [] [src]

pub enum BufferCreationError {
    FormatNotSupported,
    BufferCreationError(BufferCreationError),
}

Error that can happen when creating a vertex buffer.

Variants

FormatNotSupported

The vertex format is not supported by the backend.

Anything 64bits-related may not be supported.

BufferCreationError

Error while creating the vertex buffer.

Trait Implementations

impl From<BufferCreationError> for CreationError

fn from(err: BufferCreationError) -> CreationError

impl Display for CreationError

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

impl Error for CreationError

fn description(&self) -> &str

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

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