Enum signal_handler::Signal
source · #[repr(u8)]pub enum Signal {
InvalidAddress = 0,
IllegalInstruction = 1,
BusError = 2,
ArithmeticError = 3,
}
Expand description
The possible signals that may occur due to CPU exceptions.
Variants§
InvalidAddress = 0
Bad virtual address, unexpected page fault. Analogous to SIGSEGV.
IllegalInstruction = 1
Invalid opcode, malformed instruction, etc. Analogous to SIGILL.
BusError = 2
Bad memory alignment, non-existent physical address. Analogous to SIGBUS.
ArithmeticError = 3
Bad arithmetic operation, e.g., divide by zero. Analogous to SIGFPE.
Trait Implementations§
source§impl Ord for Signal
impl Ord for Signal
source§impl PartialEq<Signal> for Signal
impl PartialEq<Signal> for Signal
source§impl PartialOrd<Signal> for Signal
impl PartialOrd<Signal> for Signal
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for Signal
impl Eq for Signal
impl StructuralEq for Signal
impl StructuralPartialEq for Signal
Auto Trait Implementations§
impl RefUnwindSafe for Signal
impl Send for Signal
impl Sync for Signal
impl Unpin for Signal
impl UnwindSafe for Signal
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