pub enum WindowInputEvent {
KeyDown(Keys),
KeyUp(Keys),
MouseDown(MouseButton),
MouseUp(MouseButton),
MouseMove(i16, i16),
MouseWheelMove(i16),
}Variants§
KeyDown(Keys)
KeyUp(Keys)
MouseDown(MouseButton)
MouseUp(MouseButton)
MouseMove(i16, i16)
MouseWheelMove(i16)
Auto Trait Implementations§
impl Freeze for WindowInputEvent
impl RefUnwindSafe for WindowInputEvent
impl Send for WindowInputEvent
impl Sync for WindowInputEvent
impl Unpin for WindowInputEvent
impl UnsafeUnpin for WindowInputEvent
impl UnwindSafe for WindowInputEvent
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