pub struct WindowCloseRequested {
pub window: WindowId,
}
Expand description
Event emitted when a window wants to close.
After this event is emitted, if it wasn’t handled, the window will be closed.
Fields§
§window: WindowId
The window that wants to close.
Trait Implementations§
Source§impl Clone for WindowCloseRequested
impl Clone for WindowCloseRequested
Source§fn clone(&self) -> WindowCloseRequested
fn clone(&self) -> WindowCloseRequested
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 WindowCloseRequested
impl Debug for WindowCloseRequested
Source§impl Hash for WindowCloseRequested
impl Hash for WindowCloseRequested
Source§impl PartialEq for WindowCloseRequested
impl PartialEq for WindowCloseRequested
impl Copy for WindowCloseRequested
impl Eq for WindowCloseRequested
impl StructuralPartialEq for WindowCloseRequested
Auto Trait Implementations§
impl Freeze for WindowCloseRequested
impl RefUnwindSafe for WindowCloseRequested
impl Send for WindowCloseRequested
impl Sync for WindowCloseRequested
impl Unpin for WindowCloseRequested
impl UnwindSafe for WindowCloseRequested
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