#[repr(C)]pub struct uiAreaMouseEvent {
pub X: f64,
pub Y: f64,
pub AreaWidth: f64,
pub AreaHeight: f64,
pub Down: c_int,
pub Up: c_int,
pub Count: c_int,
pub Modifiers: uiModifiers,
pub Held1To64: u64,
}
Fields§
§X: f64
§Y: f64
§AreaWidth: f64
§AreaHeight: f64
§Down: c_int
§Up: c_int
§Count: c_int
§Modifiers: uiModifiers
§Held1To64: u64
Trait Implementations§
Source§impl Clone for uiAreaMouseEvent
impl Clone for uiAreaMouseEvent
Source§fn clone(&self) -> uiAreaMouseEvent
fn clone(&self) -> uiAreaMouseEvent
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 uiAreaMouseEvent
impl Debug for uiAreaMouseEvent
impl Copy for uiAreaMouseEvent
Auto Trait Implementations§
impl Freeze for uiAreaMouseEvent
impl RefUnwindSafe for uiAreaMouseEvent
impl Send for uiAreaMouseEvent
impl Sync for uiAreaMouseEvent
impl Unpin for uiAreaMouseEvent
impl UnwindSafe for uiAreaMouseEvent
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