[][src]Struct luminance_windowing::WindowOpt

pub struct WindowOpt {
    pub dim: WindowDim,
    pub cursor_mode: CursorMode,
    pub num_samples: Option<u32>,
}

Different window options.

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

Fields

dim: WindowDim

Dimension of the window.

cursor_mode: CursorMode

Cursor mode.

num_samples: Option<u32>

Number of samples for multisampling.

None means no multisampling.

Implementations

impl WindowOpt[src]

pub fn set_dim(self, dim: WindowDim) -> Self[src]

Set the dimension of the window.

pub fn dim(&self) -> &WindowDim[src]

Get the dimension of the window.

pub fn set_cursor_mode(self, cursor_mode: CursorMode) -> Self[src]

Hide, unhide or disable the cursor.

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

Get the cursor mode.

pub fn set_num_samples<S>(self, num_samples: S) -> Self 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() -> Self[src]

Defaults:

  • dim: set to WindowDim::Windowed { width: 960, 540 }`.
  • 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.