#[repr(i32)]pub enum SigInfoCodeIll {
    ILL_ILLOPC = 1,
    ILL_ILLOPN = 2,
    ILL_ILLADR = 3,
    ILL_ILLTRP = 4,
    ILL_PRVOPC = 5,
    ILL_PRVREG = 6,
    ILL_COPROC = 7,
    ILL_BADSTK = 8,
    ILL_BADIADDR = 9,
}Expand description
Codes for SIGILL
Variants§
ILL_ILLOPC = 1
ILL_ILLOPN = 2
ILL_ILLADR = 3
ILL_ILLTRP = 4
ILL_PRVOPC = 5
ILL_PRVREG = 6
ILL_COPROC = 7
ILL_BADSTK = 8
ILL_BADIADDR = 9
Trait Implementations§
Source§impl Clone for SigInfoCodeIll
 
impl Clone for SigInfoCodeIll
Source§fn clone(&self) -> SigInfoCodeIll
 
fn clone(&self) -> SigInfoCodeIll
Returns a duplicate 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 SigInfoCodeIll
 
impl Debug for SigInfoCodeIll
Source§impl From<SigInfoCodeIll> for i32
 
impl From<SigInfoCodeIll> for i32
Source§fn from(enum_value: SigInfoCodeIll) -> Self
 
fn from(enum_value: SigInfoCodeIll) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SigInfoCodeIll
 
impl PartialEq for SigInfoCodeIll
Source§impl TryFrom<i32> for SigInfoCodeIll
 
impl TryFrom<i32> for SigInfoCodeIll
Source§type Error = TryFromPrimitiveError<SigInfoCodeIll>
 
type Error = TryFromPrimitiveError<SigInfoCodeIll>
The type returned in the event of a conversion error.
Source§impl TryFromPrimitive for SigInfoCodeIll
 
impl TryFromPrimitive for SigInfoCodeIll
const NAME: &'static str = "SigInfoCodeIll"
type Primitive = i32
type Error = TryFromPrimitiveError<SigInfoCodeIll>
fn try_from_primitive( number: Self::Primitive, ) -> Result<Self, TryFromPrimitiveError<Self>>
impl Copy for SigInfoCodeIll
impl Eq for SigInfoCodeIll
impl StructuralPartialEq for SigInfoCodeIll
Auto Trait Implementations§
impl Freeze for SigInfoCodeIll
impl RefUnwindSafe for SigInfoCodeIll
impl Send for SigInfoCodeIll
impl Sync for SigInfoCodeIll
impl Unpin for SigInfoCodeIll
impl UnwindSafe for SigInfoCodeIll
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