Enum glutin::CreationError[][src]

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

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

Variants

TODO: remove this error

Trait Implementations

impl Debug for CreationError
[src]

Formats the value using the given formatter. Read more

impl Display for CreationError
[src]

Formats the value using the given formatter. Read more

impl Error for CreationError
[src]

This method is soft-deprecated. Read more

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

impl From<WindowCreationError> for CreationError
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for CreationError

impl !Sync for CreationError