[][src]Struct azul_core::window::WindowsWindowOptions

pub struct WindowsWindowOptions {
    pub no_redirection_bitmap: bool,
    pub window_icon: Option<WindowIcon>,
    pub taskbar_icon: Option<TaskBarIcon>,
    pub parent_window: Option<*mut c_void>,
}

Fields

no_redirection_bitmap: bool

STARTUP ONLY: Sets WS_EX_NOREDIRECTIONBITMAP

window_icon: Option<WindowIcon>

STARTUP ONLY: Window icon (decoded bytes), appears at the top right corner of the window

taskbar_icon: Option<TaskBarIcon>

READWRITE: Taskbar icon (decoded bytes), usually 256x256x4 bytes large (ICON_BIG).

Can be changed in callbacks / at runtime.

parent_window: Option<*mut c_void>

STARTUP ONLY: Pointer (casted to void pointer) to a HWND handle

Trait Implementations

impl Clone for WindowsWindowOptions[src]

impl Debug for WindowsWindowOptions[src]

impl Default for WindowsWindowOptions[src]

impl Eq for WindowsWindowOptions[src]

impl Hash for WindowsWindowOptions[src]

impl Ord for WindowsWindowOptions[src]

impl PartialEq<WindowsWindowOptions> for WindowsWindowOptions[src]

impl PartialOrd<WindowsWindowOptions> for WindowsWindowOptions[src]

impl StructuralEq for WindowsWindowOptions[src]

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