[][src]Enum azul_core::window::FullScreenMode

pub enum FullScreenMode {
    SlowFullScreen,
    FastFullScreen,
    SlowWindowed,
    FastWindowed,
}

Variants

SlowFullScreen
  • macOS: If the window is in windowed mode, transitions it slowly to fullscreen mode
  • other: Does the same as FastFullScreen.
FastFullScreen

Window should immediately go into fullscreen mode (on macOS this is not the default behaviour).

SlowWindowed
  • macOS: If the window is in fullscreen mode, transitions slowly back to windowed state.
  • other: Does the same as FastWindowed.
FastWindowed

If the window is in fullscreen mode, will immediately go back to windowed mode (on macOS this is not the default behaviour).

Trait Implementations

impl Clone for FullScreenMode[src]

impl Copy for FullScreenMode[src]

impl Debug for FullScreenMode[src]

impl Eq for FullScreenMode[src]

impl Hash for FullScreenMode[src]

impl Ord for FullScreenMode[src]

impl PartialEq<FullScreenMode> for FullScreenMode[src]

impl PartialOrd<FullScreenMode> for FullScreenMode[src]

impl StructuralEq for FullScreenMode[src]

impl StructuralPartialEq for FullScreenMode[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.