Enum tartan_arch::aarch64::interrupt::Kind
source · #[repr(u8)]pub enum Kind {
Synchronous = 0,
Interrupt = 1,
FastInterrupt = 2,
SystemError = 3,
}
Available on AArch64 only.
Expand description
The kind of exception being handled: sync, IRQ, FIQ, SError.
Variants§
Synchronous = 0
A standard exception traceable to a specific instruction.
Interrupt = 1
An external interrupt (IRQ).
FastInterrupt = 2
An external interrupt through the higher-priority fast interrupt (FIQ) mechanism.
SystemError = 3
An internal error with the processor (SError).
Trait Implementations§
impl Copy for Kind
impl Eq for Kind
impl StructuralPartialEq for Kind
Auto Trait Implementations§
impl Freeze for Kind
impl RefUnwindSafe for Kind
impl Send for Kind
impl Sync for Kind
impl Unpin for Kind
impl UnwindSafe for Kind
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)