pub struct WindowMaximized {
pub window: WindowId,
pub maximized: bool,
}
Expand description
Event emitted when a window is maximized.
Fields§
§window: WindowId
The window that was maximized.
maximized: bool
Whether the window is maximized or not.
Trait Implementations§
Source§impl Clone for WindowMaximized
impl Clone for WindowMaximized
Source§fn clone(&self) -> WindowMaximized
fn clone(&self) -> WindowMaximized
Returns a copy of the value. Read more
1.0.0 · 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 WindowMaximized
impl Debug for WindowMaximized
Source§impl Hash for WindowMaximized
impl Hash for WindowMaximized
Source§impl PartialEq for WindowMaximized
impl PartialEq for WindowMaximized
impl Copy for WindowMaximized
impl Eq for WindowMaximized
impl StructuralPartialEq for WindowMaximized
Auto Trait Implementations§
impl Freeze for WindowMaximized
impl RefUnwindSafe for WindowMaximized
impl Send for WindowMaximized
impl Sync for WindowMaximized
impl Unpin for WindowMaximized
impl UnwindSafe for WindowMaximized
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