pub enum Step {
Step_Pending_Interrupt((InterruptType, Privilege)),
Step_Ext_Fetch_Failure(ext_fetch_addr_error),
Step_Fetch_Failure((virtaddr, ExceptionType)),
Step_Execute((ExecutionResult, instbits)),
Step_Waiting(()),
}Expand description
Step
Generated from the Sail sources at riscv_step.sail L13-19.
Variants§
Step_Pending_Interrupt((InterruptType, Privilege))
Step_Ext_Fetch_Failure(ext_fetch_addr_error)
Step_Fetch_Failure((virtaddr, ExceptionType))
Step_Execute((ExecutionResult, instbits))
Step_Waiting(())
Trait Implementations§
impl Copy for Step
impl Eq for Step
impl StructuralPartialEq for Step
Auto Trait Implementations§
impl Freeze for Step
impl RefUnwindSafe for Step
impl Send for Step
impl Sync for Step
impl Unpin for Step
impl UnwindSafe for Step
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