Enum sel4_common::structures::exception_t
source · #[repr(C)]pub enum exception_t {
EXCEPTION_NONE,
EXCEPTION_FAULT,
EXCEPTION_LOOKUP_FAULT,
EXCEPTION_SYSCALL_ERROR,
EXCEPTION_PREEMTED,
padding,
}
Variants§
EXCEPTION_NONE
EXCEPTION_FAULT
EXCEPTION_LOOKUP_FAULT
EXCEPTION_SYSCALL_ERROR
EXCEPTION_PREEMTED
padding
Trait Implementations§
source§impl Clone for exception_t
impl Clone for exception_t
source§fn clone(&self) -> exception_t
fn clone(&self) -> exception_t
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for exception_t
impl Debug for exception_t
source§impl PartialEq<exception_t> for exception_t
impl PartialEq<exception_t> for exception_t
source§fn eq(&self, other: &exception_t) -> bool
fn eq(&self, other: &exception_t) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for exception_t
impl Eq for exception_t
impl StructuralEq for exception_t
impl StructuralPartialEq for exception_t
Auto Trait Implementations§
impl RefUnwindSafe for exception_t
impl Send for exception_t
impl Sync for exception_t
impl Unpin for exception_t
impl UnwindSafe for exception_t
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