CONTEXT_u_s

Struct CONTEXT_u_s 

Source
#[repr(C)]
pub struct CONTEXT_u_s {
Show 31 fields pub X0: DWORD64, pub X1: DWORD64, pub X2: DWORD64, pub X3: DWORD64, pub X4: DWORD64, pub X5: DWORD64, pub X6: DWORD64, pub X7: DWORD64, pub X8: DWORD64, pub X9: DWORD64, pub X10: DWORD64, pub X11: DWORD64, pub X12: DWORD64, pub X13: DWORD64, pub X14: DWORD64, pub X15: DWORD64, pub X16: DWORD64, pub X17: DWORD64, pub X18: DWORD64, pub X19: DWORD64, pub X20: DWORD64, pub X21: DWORD64, pub X22: DWORD64, pub X23: DWORD64, pub X24: DWORD64, pub X25: DWORD64, pub X26: DWORD64, pub X27: DWORD64, pub X28: DWORD64, pub Fp: DWORD64, pub Lr: DWORD64,
}

Fields§

§X0: DWORD64§X1: DWORD64§X2: DWORD64§X3: DWORD64§X4: DWORD64§X5: DWORD64§X6: DWORD64§X7: DWORD64§X8: DWORD64§X9: DWORD64§X10: DWORD64§X11: DWORD64§X12: DWORD64§X13: DWORD64§X14: DWORD64§X15: DWORD64§X16: DWORD64§X17: DWORD64§X18: DWORD64§X19: DWORD64§X20: DWORD64§X21: DWORD64§X22: DWORD64§X23: DWORD64§X24: DWORD64§X25: DWORD64§X26: DWORD64§X27: DWORD64§X28: DWORD64§Fp: DWORD64§Lr: DWORD64

Trait Implementations§

Source§

impl Clone for CONTEXT_u_s

Source§

fn clone(&self) -> CONTEXT_u_s

Returns a duplicate 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 Default for CONTEXT_u_s

Source§

fn default() -> CONTEXT_u_s

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

impl Copy for CONTEXT_u_s

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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, U> TryFrom<U> for T
where U: Into<T>,

Source§

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>,

Source§

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.