SystemContextRiscV64

Struct SystemContextRiscV64 

Source
#[repr(C)]
pub struct SystemContextRiscV64 {
Show 64 fields pub zero: u64, pub ra: u64, pub sp: u64, pub gp: u64, pub tp: u64, pub t0: u64, pub t1: u64, pub t2: u64, pub s0fp: u64, pub s1: u64, pub a0: u64, pub a1: u64, pub a2: u64, pub a3: u64, pub a4: u64, pub a5: u64, pub a6: u64, pub a7: u64, pub s2: u64, pub s3: u64, pub s4: u64, pub s5: u64, pub s6: u64, pub s7: u64, pub s8: u64, pub s9: u64, pub s10: u64, pub s11: u64, pub t3: u64, pub t4: u64, pub t5: u64, pub t6: u64, pub ft0: u128, pub ft1: u128, pub ft2: u128, pub ft3: u128, pub ft4: u128, pub ft5: u128, pub ft6: u128, pub ft7: u128, pub fs0: u128, pub fs1: u128, pub fa0: u128, pub fa1: u128, pub fa2: u128, pub fa3: u128, pub fa4: u128, pub fa5: u128, pub fa6: u128, pub fa7: u128, pub fs2: u128, pub fs3: u128, pub fs4: u128, pub fs5: u128, pub fs6: u128, pub fs7: u128, pub fs8: u128, pub fs9: u128, pub fs10: u128, pub fs11: u128, pub ft8: u128, pub ft9: u128, pub ft10: u128, pub ft11: u128,
}

Fields§

§zero: u64§ra: u64§sp: u64§gp: u64§tp: u64§t0: u64§t1: u64§t2: u64§s0fp: u64§s1: u64§a0: u64§a1: u64§a2: u64§a3: u64§a4: u64§a5: u64§a6: u64§a7: u64§s2: u64§s3: u64§s4: u64§s5: u64§s6: u64§s7: u64§s8: u64§s9: u64§s10: u64§s11: u64§t3: u64§t4: u64§t5: u64§t6: u64§ft0: u128§ft1: u128§ft2: u128§ft3: u128§ft4: u128§ft5: u128§ft6: u128§ft7: u128§fs0: u128§fs1: u128§fa0: u128§fa1: u128§fa2: u128§fa3: u128§fa4: u128§fa5: u128§fa6: u128§fa7: u128§fs2: u128§fs3: u128§fs4: u128§fs5: u128§fs6: u128§fs7: u128§fs8: u128§fs9: u128§fs10: u128§fs11: u128§ft8: u128§ft9: u128§ft10: u128§ft11: u128

Trait Implementations§

Source§

impl Clone for SystemContextRiscV64

Source§

fn clone(&self) -> SystemContextRiscV64

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 Debug for SystemContextRiscV64

Source§

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

Formats the value using the given formatter. Read more
Source§

impl Copy for SystemContextRiscV64

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.