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
OsError(String)
NotSupported
TODO: remove this error
NoBackendAvailable(Box<Error + 'static + Send>)
RobustnessNotSupported
OpenGlVersionNotSupported
NoAvailablePixelFormat
PlatformSpecific(String)
Window(CreationError)
Trait Implementations
impl Debug for CreationError
fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter. Read more
impl Display for CreationError
fn fmt(&self, formatter: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter. Read more
impl From<CreationError> for CreationError
fn from(err: CreationError) -> CreationError
Performs the conversion.