Enum three_d::WindowError [−][src]
pub enum WindowError {
WindowCreationError(CreationError),
ContextError(ContextError),
InvalidNumberOfSamples,
}Expand description
Error message from the window module.
Variants
WindowCreationError(CreationError)Expand description
See glutin CreationError.
ContextError(ContextError)Expand description
See glutin ContextError.
Expand description
The number of samples must be a power of two.
Trait Implementations
impl Debug for WindowError[src]
impl Debug for WindowError[src]impl From<ContextError> for WindowError[src]
impl From<ContextError> for WindowError[src]fn from(other: ContextError) -> Self[src]
fn from(other: ContextError) -> Self[src]Performs the conversion.
impl From<CreationError> for WindowError[src]
impl From<CreationError> for WindowError[src]fn from(other: CreationError) -> Self[src]
fn from(other: CreationError) -> Self[src]Performs the conversion.