pub struct WindowState(/* private fields */);Expand description
C++ enum: Qt::WindowState.
Implementations§
Source§impl WindowState
impl WindowState
Sourcepub const WindowNoState: WindowState
pub const WindowNoState: WindowState
C++ enum variant: WindowNoState = 0
Sourcepub const WindowMinimized: WindowState
pub const WindowMinimized: WindowState
C++ enum variant: WindowMinimized = 1
Sourcepub const WindowMaximized: WindowState
pub const WindowMaximized: WindowState
C++ enum variant: WindowMaximized = 2
Sourcepub const WindowFullScreen: WindowState
pub const WindowFullScreen: WindowState
C++ enum variant: WindowFullScreen = 4
Sourcepub const WindowActive: WindowState
pub const WindowActive: WindowState
C++ enum variant: WindowActive = 8
Trait Implementations§
Source§impl Clone for WindowState
impl Clone for WindowState
Source§fn clone(&self) -> WindowState
fn clone(&self) -> WindowState
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 WindowState
impl Debug for WindowState
Source§impl From<WindowState> for c_int
impl From<WindowState> for c_int
Source§fn from(value: WindowState) -> Self
fn from(value: WindowState) -> Self
Converts to this type from the input type.
Source§impl From<i32> for WindowState
impl From<i32> for WindowState
Source§impl PartialEq for WindowState
impl PartialEq for WindowState
Source§fn eq(&self, other: &WindowState) -> bool
fn eq(&self, other: &WindowState) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for WindowState
impl Eq for WindowState
impl StructuralPartialEq for WindowState
Auto Trait Implementations§
impl Freeze for WindowState
impl RefUnwindSafe for WindowState
impl Send for WindowState
impl Sync for WindowState
impl Unpin for WindowState
impl UnsafeUnpin for WindowState
impl UnwindSafe for WindowState
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