pub struct WindowFocusLostEvent {
pub window_id: WindowId,
}Expand description
A window lost input focus.
Fields§
§window_id: WindowIdThe ID of the window.
Trait Implementations§
Source§impl Clone for WindowFocusLostEvent
impl Clone for WindowFocusLostEvent
Source§fn clone(&self) -> WindowFocusLostEvent
fn clone(&self) -> WindowFocusLostEvent
Returns a duplicate 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 WindowFocusLostEvent
impl Debug for WindowFocusLostEvent
Source§impl From<WindowFocusLostEvent> for WindowEvent
impl From<WindowFocusLostEvent> for WindowEvent
Source§fn from(other: WindowFocusLostEvent) -> Self
fn from(other: WindowFocusLostEvent) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for WindowFocusLostEvent
impl RefUnwindSafe for WindowFocusLostEvent
impl Send for WindowFocusLostEvent
impl Sync for WindowFocusLostEvent
impl Unpin for WindowFocusLostEvent
impl UnwindSafe for WindowFocusLostEvent
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