#[repr(i32)]pub enum SigInfoCodeSys {
    SYS_SECCOMP = 1,
}Expand description
Codes for SIGSYS
Variants§
SYS_SECCOMP = 1
Trait Implementations§
Source§impl Clone for SigInfoCodeSys
 
impl Clone for SigInfoCodeSys
Source§fn clone(&self) -> SigInfoCodeSys
 
fn clone(&self) -> SigInfoCodeSys
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 SigInfoCodeSys
 
impl Debug for SigInfoCodeSys
Source§impl From<SigInfoCodeSys> for i32
 
impl From<SigInfoCodeSys> for i32
Source§fn from(enum_value: SigInfoCodeSys) -> Self
 
fn from(enum_value: SigInfoCodeSys) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SigInfoCodeSys
 
impl PartialEq for SigInfoCodeSys
Source§impl TryFrom<i32> for SigInfoCodeSys
 
impl TryFrom<i32> for SigInfoCodeSys
Source§type Error = TryFromPrimitiveError<SigInfoCodeSys>
 
type Error = TryFromPrimitiveError<SigInfoCodeSys>
The type returned in the event of a conversion error.
Source§impl TryFromPrimitive for SigInfoCodeSys
 
impl TryFromPrimitive for SigInfoCodeSys
const NAME: &'static str = "SigInfoCodeSys"
type Primitive = i32
type Error = TryFromPrimitiveError<SigInfoCodeSys>
fn try_from_primitive( number: Self::Primitive, ) -> Result<Self, TryFromPrimitiveError<Self>>
impl Copy for SigInfoCodeSys
impl Eq for SigInfoCodeSys
impl StructuralPartialEq for SigInfoCodeSys
Auto Trait Implementations§
impl Freeze for SigInfoCodeSys
impl RefUnwindSafe for SigInfoCodeSys
impl Send for SigInfoCodeSys
impl Sync for SigInfoCodeSys
impl Unpin for SigInfoCodeSys
impl UnwindSafe for SigInfoCodeSys
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