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