[][src]Struct winapi::um::winuser::MOUSEINPUT

#[repr(C)]pub struct MOUSEINPUT {
    pub dx: LONG,
    pub dy: LONG,
    pub mouseData: DWORD,
    pub dwFlags: DWORD,
    pub time: DWORD,
    pub dwExtraInfo: ULONG_PTR,
}

Fields

dx: LONGdy: LONGmouseData: DWORDdwFlags: DWORDtime: DWORDdwExtraInfo: ULONG_PTR

Trait Implementations

impl Clone for MOUSEINPUT[src]

impl Copy for MOUSEINPUT[src]

impl Default for MOUSEINPUT[src]

Auto Trait Implementations

impl Send for MOUSEINPUT

impl Sync for MOUSEINPUT

impl Unpin for MOUSEINPUT

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.