pub enum Exception {
Show 15 variants
InstructionMisaligned,
InstructionFault,
IllegalInstruction,
Breakpoint,
LoadMisaligned,
LoadFault,
StoreMisaligned,
StoreFault,
UserEnvCall,
SupervisorEnvCall,
MachineEnvCall,
InstructionPageFault,
LoadPageFault,
StorePageFault,
Unknown,
}
Expand description
Exception
Variants§
InstructionMisaligned
InstructionFault
IllegalInstruction
Breakpoint
LoadMisaligned
LoadFault
StoreMisaligned
StoreFault
UserEnvCall
SupervisorEnvCall
MachineEnvCall
InstructionPageFault
LoadPageFault
StorePageFault
Unknown
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Exception
impl RefUnwindSafe for Exception
impl Send for Exception
impl Sync for Exception
impl Unpin for Exception
impl UnwindSafe for Exception
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