Skip to main content

VexGuestS390XState

Struct VexGuestS390XState 

Source
#[repr(C)]
pub struct VexGuestS390XState {
Show 65 fields pub guest_a0: UInt, pub guest_a1: UInt, pub guest_a2: UInt, pub guest_a3: UInt, pub guest_a4: UInt, pub guest_a5: UInt, pub guest_a6: UInt, pub guest_a7: UInt, pub guest_a8: UInt, pub guest_a9: UInt, pub guest_a10: UInt, pub guest_a11: UInt, pub guest_a12: UInt, pub guest_a13: UInt, pub guest_a14: UInt, pub guest_a15: UInt, pub guest_f0: ULong, pub guest_f1: ULong, pub guest_f2: ULong, pub guest_f3: ULong, pub guest_f4: ULong, pub guest_f5: ULong, pub guest_f6: ULong, pub guest_f7: ULong, pub guest_f8: ULong, pub guest_f9: ULong, pub guest_f10: ULong, pub guest_f11: ULong, pub guest_f12: ULong, pub guest_f13: ULong, pub guest_f14: ULong, pub guest_f15: ULong, pub guest_r0: ULong, pub guest_r1: ULong, pub guest_r2: ULong, pub guest_r3: ULong, pub guest_r4: ULong, pub guest_r5: ULong, pub guest_r6: ULong, pub guest_r7: ULong, pub guest_r8: ULong, pub guest_r9: ULong, pub guest_r10: ULong, pub guest_r11: ULong, pub guest_r12: ULong, pub guest_r13: ULong, pub guest_r14: ULong, pub guest_r15: ULong, pub guest_counter: ULong, pub guest_fpc: UInt, pub unused: [UChar; 4], pub guest_IA: ULong, pub guest_SYSNO: ULong, pub guest_CC_OP: ULong, pub guest_CC_DEP1: ULong, pub guest_CC_DEP2: ULong, pub guest_CC_NDEP: ULong, pub guest_NRADDR: ULong, pub guest_CMSTART: ULong, pub guest_CMLEN: ULong, pub guest_IP_AT_SYSCALL: ULong, pub guest_EMNOTE: UInt, pub host_EvC_COUNTER: UInt, pub host_EvC_FAILADDR: ULong, pub padding: [UChar; 0],
}

Fields§

§guest_a0: UInt§guest_a1: UInt§guest_a2: UInt§guest_a3: UInt§guest_a4: UInt§guest_a5: UInt§guest_a6: UInt§guest_a7: UInt§guest_a8: UInt§guest_a9: UInt§guest_a10: UInt§guest_a11: UInt§guest_a12: UInt§guest_a13: UInt§guest_a14: UInt§guest_a15: UInt§guest_f0: ULong§guest_f1: ULong§guest_f2: ULong§guest_f3: ULong§guest_f4: ULong§guest_f5: ULong§guest_f6: ULong§guest_f7: ULong§guest_f8: ULong§guest_f9: ULong§guest_f10: ULong§guest_f11: ULong§guest_f12: ULong§guest_f13: ULong§guest_f14: ULong§guest_f15: ULong§guest_r0: ULong§guest_r1: ULong§guest_r2: ULong§guest_r3: ULong§guest_r4: ULong§guest_r5: ULong§guest_r6: ULong§guest_r7: ULong§guest_r8: ULong§guest_r9: ULong§guest_r10: ULong§guest_r11: ULong§guest_r12: ULong§guest_r13: ULong§guest_r14: ULong§guest_r15: ULong§guest_counter: ULong§guest_fpc: UInt§unused: [UChar; 4]§guest_IA: ULong§guest_SYSNO: ULong§guest_CC_OP: ULong§guest_CC_DEP1: ULong§guest_CC_DEP2: ULong§guest_CC_NDEP: ULong§guest_NRADDR: ULong§guest_CMSTART: ULong§guest_CMLEN: ULong§guest_IP_AT_SYSCALL: ULong§guest_EMNOTE: UInt§host_EvC_COUNTER: UInt§host_EvC_FAILADDR: ULong§padding: [UChar; 0]

Trait Implementations§

Source§

impl Clone for VexGuestS390XState

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Copy for VexGuestS390XState

Source§

impl Default for VexGuestS390XState

Source§

fn default() -> Self

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

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

Source§

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

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.