pub enum FatalSignal {
Segv,
Bus,
Fpe,
Ill,
}Expand description
Les quatre signaux synchrones fatals couverts par l’ADR-020.
L’enum est restreint à ces 4 variantes ; aucune API Air n’expose
d’autre signal pour sigaction.
Variants§
Segv
SIGSEGV — segmentation fault.
Bus
SIGBUS — bus error.
Fpe
SIGFPE — floating-point exception.
Ill
SIGILL — illegal instruction.
Implementations§
Trait Implementations§
Source§impl Clone for FatalSignal
impl Clone for FatalSignal
Source§fn clone(&self) -> FatalSignal
fn clone(&self) -> FatalSignal
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for FatalSignal
Source§impl Debug for FatalSignal
impl Debug for FatalSignal
impl Eq for FatalSignal
Source§impl Hash for FatalSignal
impl Hash for FatalSignal
Source§impl PartialEq for FatalSignal
impl PartialEq for FatalSignal
impl StructuralPartialEq for FatalSignal
Auto Trait Implementations§
impl Freeze for FatalSignal
impl RefUnwindSafe for FatalSignal
impl Send for FatalSignal
impl Sync for FatalSignal
impl Unpin for FatalSignal
impl UnsafeUnpin for FatalSignal
impl UnwindSafe for FatalSignal
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