Enum limn_core::prelude::glutin::CreationError []

pub enum CreationError {
    OsError(String),
    NotSupported,
    NoBackendAvailable(Box<Error + 'static + Send>),
    RobustnessNotSupported,
    OpenGlVersionNotSupported,
    NoAvailablePixelFormat,
    PlatformSpecific(String),
    Window(CreationError),
}

Error that can happen while creating a window or a headless renderer.

Variants

TODO: remove this error

Trait Implementations

impl Debug for CreationError

Formats the value using the given formatter. Read more

impl Display for CreationError

Formats the value using the given formatter. Read more

impl From<CreationError> for CreationError

Performs the conversion.

impl Error for CreationError