Struct tartan_arch::aarch64::interrupt::VectorEntry
source · #[repr(align(128))]pub struct VectorEntry(/* private fields */);
Available on AArch64 only.
Expand description
A single entry in the exception VectorTable
.
The bytes of the entry are interpreted as instructions and executed when an exception
of the corresponding Kind
+ Source
is encountered. Consequently, it isn’t
useful to instantiate this type directly. Use aarch64_exception_vector_table
instead.
Auto Trait Implementations§
impl Freeze for VectorEntry
impl RefUnwindSafe for VectorEntry
impl Send for VectorEntry
impl Sync for VectorEntry
impl Unpin for VectorEntry
impl UnwindSafe for VectorEntry
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