[][src]Enum bevy_window::WindowMode

pub enum WindowMode {
    Windowed,
    BorderlessFullscreen,
    Fullscreen {
        use_size: bool,
    },
}

Defines the way a window is displayed The use_size option that is used in the Fullscreen variant defines whether a videomode is chosen that best fits the width and height in the Window structure, or if these are ignored. E.g. when use_size is set to false the best video mode possible is chosen.

Variants

Windowed
BorderlessFullscreen
Fullscreen

Fields of Fullscreen

use_size: bool

Trait Implementations

impl Clone for WindowMode[src]

impl Copy for WindowMode[src]

impl Debug for WindowMode[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> Component for T where
    T: 'static + Send + Sync

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

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

impl<T> Resource for T where
    T: 'static + Send + Sync
[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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,