#[repr(C)]
pub struct AsmCoreMachine {
Show 15 fields pub registers: [u64; 32], pub pc: u64, pub next_pc: u64, pub running: u8, pub cycles: u64, pub max_cycles: u64, pub chaos_mode: u8, pub chaos_seed: u32, pub reset_signal: u8, pub isa: u8, pub version: u32, pub flags: [u8; 1024], pub memory: [u8; 4194304], pub frames: [u8; 16], pub traces: [Trace; 8192],
}

Fields

registers: [u64; 32]pc: u64next_pc: u64running: u8cycles: u64max_cycles: u64chaos_mode: u8chaos_seed: u32reset_signal: u8isa: u8version: u32flags: [u8; 1024]memory: [u8; 4194304]frames: [u8; 16]traces: [Trace; 8192]

Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.