[][src]Enum candelabre_windowing::CandlError

pub enum CandlError {
    CreationError(CreationError),
    ContextError(ContextError),
    InternalError(&'static str),
}

The error of Candelabre Windowing

All the possible errors you can meet with this crate are from this type. One type to rule them all, one type to find them.

Variants

CreationError(CreationError)

OpenGL context creation error

ContextError(ContextError)

OpenGL context usage error

InternalError(&'static str)

Candelabre internal error

Trait Implementations

impl Debug for CandlError[src]

impl Display for CandlError[src]

impl From<ContextError> for CandlError[src]

impl From<CreationError> for CandlError[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.