Struct msfs::sys::MOUSE_ARG

source ·
#[repr(C, packed(4))]
pub struct MOUSE_ARG { pub source_var: MODULE_VAR, pub scale: FLOAT64, pub numeric_table: *mut MOUSE_ARG_NUMERIC_MAP, pub numeric_table_size: UINT, pub id_table: *mut MOUSE_ARG_ID_MAP, pub id_table_size: UINT, pub string_table: *mut MOUSE_ARG_STRING_MAP, pub string_table_size: UINT, pub numeric_callback: Option<unsafe extern "C" fn(number: FLOAT64, id: ID, string: PCSTRINGZ, source_var: *mut MODULE_VAR, gauge: PGAUGEHDR) -> FLOAT64>, pub id_callback: Option<unsafe extern "C" fn(number: FLOAT64, id: ID, string: PCSTRINGZ, source_var: *mut MODULE_VAR, gauge: PGAUGEHDR) -> ID>, pub string_callback: Option<unsafe extern "C" fn(number: FLOAT64, id: ID, string: PCSTRINGZ, source_var: *mut MODULE_VAR, gauge: PGAUGEHDR) -> PCSTRINGZ>, }

Fields§

§source_var: MODULE_VAR§scale: FLOAT64§numeric_table: *mut MOUSE_ARG_NUMERIC_MAP§numeric_table_size: UINT§id_table: *mut MOUSE_ARG_ID_MAP§id_table_size: UINT§string_table: *mut MOUSE_ARG_STRING_MAP§string_table_size: UINT§numeric_callback: Option<unsafe extern "C" fn(number: FLOAT64, id: ID, string: PCSTRINGZ, source_var: *mut MODULE_VAR, gauge: PGAUGEHDR) -> FLOAT64>§id_callback: Option<unsafe extern "C" fn(number: FLOAT64, id: ID, string: PCSTRINGZ, source_var: *mut MODULE_VAR, gauge: PGAUGEHDR) -> ID>§string_callback: Option<unsafe extern "C" fn(number: FLOAT64, id: ID, string: PCSTRINGZ, source_var: *mut MODULE_VAR, gauge: PGAUGEHDR) -> PCSTRINGZ>

Trait Implementations§

source§

impl Clone for MOUSE_ARG

source§

fn clone(&self) -> MOUSE_ARG

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
source§

impl Copy for MOUSE_ARG

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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 Twhere 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 Twhere 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 Twhere 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.