[][src]Enum candelabre_windowing::CandlDimension

pub enum CandlDimension {
    Classic(u32u32),
    Fullscreen,
    FullscreenSpecific(u32u32),
}

Window dimensions

This type is an extract from luminance-windowing to avoid the call of this crate and separate a little bit more luminance from candelabre. The idea is to maybe be able to use candelabre without luminance.

Variants

Classic(u32u32)

cassic windowed mode

Fullscreen

fullscreen (for only one monitor)

FullscreenSpecific(u32u32)

fullscreen mode but with specific dimensions

Trait Implementations

impl Clone for CandlDimension[src]

impl Copy for CandlDimension[src]

impl Debug for CandlDimension[src]

impl Eq for CandlDimension[src]

impl PartialEq<CandlDimension> for CandlDimension[src]

impl StructuralEq for CandlDimension[src]

impl StructuralPartialEq for CandlDimension[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.