[][src]Struct quicksilver::lifecycle::Settings

pub struct Settings {
    pub size: Vector2<f32>,
    pub cursor_icon: Option<CursorIcon>,
    pub fullscreen: bool,
    pub icon_path: Option<&'static str>,
    pub multisampling: Option<u16>,
    pub vsync: bool,
    pub resizable: bool,
    pub title: &'static str,
}

The various options to pass to the Window and/or GL context

Fields

size: Vector2<f32>

The size of the window

cursor_icon: Option<CursorIcon>

If the cursor should be visible over the application, or if the cursor should be hidden

fullscreen: bool

If the application should be fullscreen

icon_path: Option<&'static str>

The icon on the window or the favicon on the tab

multisampling: Option<u16>

How many samples to do for MSAA

By default it is None; if it is Some, it should be a non-zero power of two

Does nothing on web currently

vsync: bool

Enable or disable vertical sync

Does nothing on web

resizable: bool

If the window can be resized by the user

Does nothing on web

title: &'static str

The title of your application

Trait Implementations

impl Default for Settings[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> SetParameter for T

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.