#[repr(C)]pub struct WindowsWindowOptions {
pub allow_drag_and_drop: bool,
pub no_redirection_bitmap: bool,
pub window_icon: OptionWindowIcon,
pub taskbar_icon: OptionTaskBarIcon,
}Fields§
§allow_drag_and_drop: boolSTARTUP ONLY: Whether the window should allow drag + drop operations (default: true)
no_redirection_bitmap: boolSTARTUP ONLY: Sets WS_EX_NOREDIRECTIONBITMAP
window_icon: OptionWindowIconSTARTUP ONLY: Window icon (decoded bytes), appears at the top right corner of the window
taskbar_icon: OptionTaskBarIconREADWRITE: Taskbar icon (decoded bytes), usually 256x256x4 bytes large (ICON_BIG).
Can be changed in callbacks / at runtime.
Trait Implementations§
Source§impl Clone for WindowsWindowOptions
impl Clone for WindowsWindowOptions
Source§fn clone(&self) -> WindowsWindowOptions
fn clone(&self) -> WindowsWindowOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for WindowsWindowOptions
impl Debug for WindowsWindowOptions
Source§impl Default for WindowsWindowOptions
impl Default for WindowsWindowOptions
impl Eq for WindowsWindowOptions
Source§impl PartialEq for WindowsWindowOptions
impl PartialEq for WindowsWindowOptions
Source§impl PartialOrd for WindowsWindowOptions
impl PartialOrd for WindowsWindowOptions
impl StructuralPartialEq for WindowsWindowOptions
Auto Trait Implementations§
impl Freeze for WindowsWindowOptions
impl RefUnwindSafe for WindowsWindowOptions
impl Send for WindowsWindowOptions
impl Sync for WindowsWindowOptions
impl Unpin for WindowsWindowOptions
impl UnsafeUnpin for WindowsWindowOptions
impl UnwindSafe for WindowsWindowOptions
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more