Struct iced_glutin::settings::Window[][src]

pub struct Window {
    pub size: (u32, u32),
    pub min_size: Option<(u32, u32)>,
    pub max_size: Option<(u32, u32)>,
    pub resizable: bool,
    pub decorations: bool,
    pub transparent: bool,
    pub always_on_top: bool,
    pub icon: Option<Icon>,
    pub platform_specific: PlatformSpecific,
}

The window settings of an application.

Fields

size: (u32, u32)

The size of the window.

min_size: Option<(u32, u32)>

The minimum size of the window.

max_size: Option<(u32, u32)>

The maximum size of the window.

resizable: bool

Whether the window should be resizable or not.

decorations: bool

Whether the window should have a border, a title bar, etc.

transparent: bool

Whether the window should be transparent.

always_on_top: bool

Whether the window will always be on top of other windows.

icon: Option<Icon>

The window icon, which is also usually used in the taskbar

platform_specific: PlatformSpecific

Platform specific settings.

Implementations

impl Window[src]

pub fn into_builder(
    self,
    title: &str,
    mode: Mode,
    primary_monitor: Option<MonitorHandle>
) -> WindowBuilder
[src]

Converts the window settings into a WindowBuilder from winit.

Trait Implementations

impl Clone for Window[src]

impl Debug for Window[src]

impl Default for Window[src]

Auto Trait Implementations

impl RefUnwindSafe for Window

impl !Send for Window

impl !Sync for Window

impl Unpin for Window

impl UnwindSafe for Window

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.

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