pub struct WindowStateEvent {
pub focused: bool,
pub minimized: bool,
pub maximized: bool,
pub fullscreen: bool,
}Fields§
§focused: bool§minimized: bool§maximized: bool§fullscreen: boolTrait Implementations§
Source§impl Clone for WindowStateEvent
impl Clone for WindowStateEvent
Source§fn clone(&self) -> WindowStateEvent
fn clone(&self) -> WindowStateEvent
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 moreimpl Copy for WindowStateEvent
Source§impl Debug for WindowStateEvent
impl Debug for WindowStateEvent
Source§impl Default for WindowStateEvent
impl Default for WindowStateEvent
Source§fn default() -> WindowStateEvent
fn default() -> WindowStateEvent
Returns the “default value” for a type. Read more
impl Eq for WindowStateEvent
Source§impl PartialEq for WindowStateEvent
impl PartialEq for WindowStateEvent
impl StructuralPartialEq for WindowStateEvent
Auto Trait Implementations§
impl Freeze for WindowStateEvent
impl RefUnwindSafe for WindowStateEvent
impl Send for WindowStateEvent
impl Sync for WindowStateEvent
impl Unpin for WindowStateEvent
impl UnsafeUnpin for WindowStateEvent
impl UnwindSafe for WindowStateEvent
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