Enum glium::framebuffer::RenderBufferCreationError [] [src]

pub enum RenderBufferCreationError {
    FormatNotSupported,
}

Error while creating a render buffer.

Variants

FormatNotSupported

The requested format is not supported.

Trait Implementations

impl Debug for CreationError
[src]

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

Formats the value using the given formatter.

impl Clone for CreationError
[src]

fn clone(&self) -> CreationError

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 Copy for CreationError
[src]

impl Display for CreationError
[src]

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

Formats the value using the given formatter.

impl Error for CreationError
[src]

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.

impl From<FormatNotSupportedError> for CreationError
[src]

fn from(_: FormatNotSupportedError) -> CreationError

Performs the conversion.