[][src]Struct tge::window::WindowConfig

pub struct WindowConfig { /* fields omitted */ }

Implementations

impl WindowConfig[src]

pub fn new() -> Self[src]

pub fn title(self, title: impl Into<String>) -> Self[src]

pub fn icon(self, path: impl Into<String>) -> Self[src]

pub fn inner_size(self, size: impl Into<LogicalSize>) -> Self[src]

pub fn min_inner_size(self, size: impl Into<LogicalSize>) -> Self[src]

pub fn max_inner_size(self, size: impl Into<LogicalSize>) -> Self[src]

pub fn fullscreen(self, fullscreen: Option<FullscreenMode>) -> Self[src]

pub fn resizable(self, resizable: bool) -> Self[src]

pub fn maximized(self, maximized: bool) -> Self[src]

pub fn transparent(self, transparent: bool) -> Self[src]

pub fn decorations(self, decorations: bool) -> Self[src]

pub fn always_on_top(self, always_on_top: bool) -> Self[src]

pub fn visible(self, visible: bool) -> Self[src]

pub fn vsync(self, vsync: bool) -> Self[src]

Trait Implementations

impl Clone for WindowConfig[src]

impl Debug for WindowConfig[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> 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.