pub enum Syndrome {
Unknown,
PCAlignmentFault,
DataAbort(Fault),
InstructionAbort(Fault),
SPAlignmentFault,
Brk(u16),
HVC,
SMC,
SysRegInst,
WFX,
Other(u32),
}
Variants§
Unknown
PCAlignmentFault
DataAbort(Fault)
InstructionAbort(Fault)
SPAlignmentFault
Brk(u16)
HVC
SMC
SysRegInst
WFX
Other(u32)
Trait Implementations§
impl Copy for Syndrome
Auto Trait Implementations§
impl Freeze for Syndrome
impl RefUnwindSafe for Syndrome
impl Send for Syndrome
impl Sync for Syndrome
impl Unpin for Syndrome
impl UnwindSafe for Syndrome
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