pub enum WindowEvent {
CursorMoved {
device_id: DeviceId,
position: PhysicalPosition<f64>,
},
CursorEntered {
device_id: DeviceId,
},
CursorLeft {
device_id: DeviceId,
},
Resized(PhysicalSize<u32>),
Focused(bool),
Occluded(bool),
Destroyed,
}
Available on crate feature
EventLoop
only.Variants§
CursorMoved
CursorEntered
CursorLeft
Resized(PhysicalSize<u32>)
Focused(bool)
Occluded(bool)
Destroyed
Trait Implementations§
Source§impl Clone for WindowEvent
impl Clone for WindowEvent
Source§fn clone(&self) -> WindowEvent
fn clone(&self) -> WindowEvent
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 WindowEvent
impl Debug for WindowEvent
Source§impl PartialEq for WindowEvent
impl PartialEq for WindowEvent
Source§impl Signal<WindowEvent> for Window
Available on crate feature Window
only.
impl Signal<WindowEvent> for Window
Available on crate feature
Window
only.impl StructuralPartialEq for WindowEvent
Auto Trait Implementations§
impl Freeze for WindowEvent
impl RefUnwindSafe for WindowEvent
impl Send for WindowEvent
impl Sync for WindowEvent
impl Unpin for WindowEvent
impl UnwindSafe for WindowEvent
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