Enum nannou::ui::backend::glium::glium::backend::glutin::DisplayCreationError[][src]

pub enum DisplayCreationError {
    GlutinCreationError(CreationError),
    IncompatibleOpenGl(IncompatibleOpenGl),
}

Error that can happen while creating a glium display.

Variants

An error has happened while creating the backend.

The OpenGL implementation is too old.

Trait Implementations

impl Debug for DisplayCreationError
[src]

Formats the value using the given formatter. Read more

impl From<CreationError> for DisplayCreationError
[src]

Performs the conversion.

impl From<IncompatibleOpenGl> for DisplayCreationError
[src]

Performs the conversion.

impl Error for DisplayCreationError
[src]

This method is soft-deprecated. Read more

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

impl Display for DisplayCreationError
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations