pub struct Regs {
pub gpr: [u64; 13],
pub pc: u64,
}Expand description
Full register state: 13 GPRs + PC.
Fields§
§gpr: [u64; 13]General-purpose registers φ₀..φ₁₂.
pc: u64Program counter (bytecode offset, not memory address).
Implementations§
Trait Implementations§
impl Eq for Regs
impl StructuralPartialEq for Regs
Auto Trait Implementations§
impl Freeze for Regs
impl RefUnwindSafe for Regs
impl Send for Regs
impl Sync for Regs
impl Unpin for Regs
impl UnsafeUnpin for Regs
impl UnwindSafe for Regs
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more