#[repr(C)]pub struct MOUSE_INPUT_DATA {
pub UnitId: u16,
pub Flags: u16,
pub Anonymous: MOUSE_INPUT_DATA_0,
pub RawButtons: u32,
pub LastX: i32,
pub LastY: i32,
pub ExtraInformation: u32,
}
Fields§
§UnitId: u16
§Flags: u16
§Anonymous: MOUSE_INPUT_DATA_0
§RawButtons: u32
§LastX: i32
§LastY: i32
§ExtraInformation: u32
Trait Implementations§
Source§impl Abi for MOUSE_INPUT_DATA
impl Abi for MOUSE_INPUT_DATA
Source§type Abi = MOUSE_INPUT_DATA
type Abi = MOUSE_INPUT_DATA
The abi representation of the implementing type. Read more
type DefaultType = MOUSE_INPUT_DATA
Source§fn ok(value: &Self::DefaultType) -> Result<Self, Error>
fn ok(value: &Self::DefaultType) -> Result<Self, Error>
Converts from
Self::DefaultType
to Result<T>
.Source§fn set_abi(&mut self) -> *mut Self::Abi
fn set_abi(&mut self) -> *mut Self::Abi
Returns a pointer for setting the object’s value via an ABI call.
fn drop_param(_: &mut Param<'_, Self>)
Source§impl Clone for MOUSE_INPUT_DATA
impl Clone for MOUSE_INPUT_DATA
Source§fn clone(&self) -> MOUSE_INPUT_DATA
fn clone(&self) -> MOUSE_INPUT_DATA
Returns a copy 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 PartialEq for MOUSE_INPUT_DATA
impl PartialEq for MOUSE_INPUT_DATA
impl Copy for MOUSE_INPUT_DATA
impl Eq for MOUSE_INPUT_DATA
Auto Trait Implementations§
impl Freeze for MOUSE_INPUT_DATA
impl RefUnwindSafe for MOUSE_INPUT_DATA
impl Send for MOUSE_INPUT_DATA
impl Sync for MOUSE_INPUT_DATA
impl Unpin for MOUSE_INPUT_DATA
impl UnwindSafe for MOUSE_INPUT_DATA
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