#[repr(u8)]pub enum TrapKind {
Synchronous = 0,
Irq = 1,
Fiq = 2,
SError = 3,
}Available on AArch64 only.
Expand description
AArch64 vector entry kind.
Variants§
Synchronous = 0
A synchronous exception.
Irq = 1
A physical or virtual IRQ.
Fiq = 2
A fast interrupt.
SError = 3
An asynchronous system error.
Trait Implementations§
impl Copy for TrapKind
impl Eq for TrapKind
impl StructuralPartialEq for TrapKind
Auto Trait Implementations§
impl Freeze for TrapKind
impl RefUnwindSafe for TrapKind
impl Send for TrapKind
impl Sync for TrapKind
impl Unpin for TrapKind
impl UnsafeUnpin for TrapKind
impl UnwindSafe for TrapKind
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