#[repr(C)]
pub struct DIJOYSTATE2 {
Show 30 fields pub lX: i32, pub lY: i32, pub lZ: i32, pub lRx: i32, pub lRy: i32, pub lRz: i32, pub rglSlider: [i32; 2], pub rgdwPOV: [u32; 4], pub rgbButtons: [u8; 128], pub lVX: i32, pub lVY: i32, pub lVZ: i32, pub lVRx: i32, pub lVRy: i32, pub lVRz: i32, pub rglVSlider: [i32; 2], pub lAX: i32, pub lAY: i32, pub lAZ: i32, pub lARx: i32, pub lARy: i32, pub lARz: i32, pub rglASlider: [i32; 2], pub lFX: i32, pub lFY: i32, pub lFZ: i32, pub lFRx: i32, pub lFRy: i32, pub lFRz: i32, pub rglFSlider: [i32; 2],
}

Fields§

§lX: i32§lY: i32§lZ: i32§lRx: i32§lRy: i32§lRz: i32§rglSlider: [i32; 2]§rgdwPOV: [u32; 4]§rgbButtons: [u8; 128]§lVX: i32§lVY: i32§lVZ: i32§lVRx: i32§lVRy: i32§lVRz: i32§rglVSlider: [i32; 2]§lAX: i32§lAY: i32§lAZ: i32§lARx: i32§lARy: i32§lARz: i32§rglASlider: [i32; 2]§lFX: i32§lFY: i32§lFZ: i32§lFRx: i32§lFRy: i32§lFRz: i32§rglFSlider: [i32; 2]

Trait Implementations§

§

impl Clone for DIJOYSTATE2

§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl Debug for DIJOYSTATE2

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
§

impl Default for DIJOYSTATE2

§

fn default() -> Self

Returns the “default value” for a type. Read more
§

impl PartialEq for DIJOYSTATE2

§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl Copy for DIJOYSTATE2

§

impl Eq for DIJOYSTATE2

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.