[][src]Struct luminance_glutin::WindowOpt

pub struct WindowOpt { /* fields omitted */ }

Different window options.

Feel free to look at the different methods available to tweak the options. You may want to start with default() though.

Methods

impl WindowOpt[src]

pub fn set_cursor_mode(self, mode: CursorMode) -> WindowOpt[src]

Hide, unhide or disable the cursor. Default to CursorMode::Visible.

pub fn cursor_mode(&self) -> CursorMode[src]

Get the cursor mode.

pub fn set_num_samples<S>(self, samples: S) -> WindowOpt where
    S: Into<Option<u32>>, 
[src]

Set the number of samples to use for multisampling.

Pass None to disable multisampling.

pub fn num_samples(&self) -> Option<u32>[src]

Get the number of samples to use in multisampling, if any.

Trait Implementations

impl Clone for WindowOpt[src]

impl Copy for WindowOpt[src]

impl Debug for WindowOpt[src]

impl Default for WindowOpt[src]

fn default() -> WindowOpt[src]

Defaults:

  • cursor_mode set to CursorMode::Visible.
  • num_samples set to None.

impl Eq for WindowOpt[src]

impl PartialEq<WindowOpt> for WindowOpt[src]

impl StructuralEq for WindowOpt[src]

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