pub struct MouseRepr {
pub buttons: Vec<MouseButton>,
pub x: i32,
pub y: i32,
}Expand description
Representation of the mouse state.
Fields§
§x: i32§y: i32Auto Trait Implementations§
impl Freeze for MouseRepr
impl RefUnwindSafe for MouseRepr
impl Send for MouseRepr
impl Sync for MouseRepr
impl Unpin for MouseRepr
impl UnsafeUnpin for MouseRepr
impl UnwindSafe for MouseRepr
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