Enum unshare::ChildEvent[][src]

pub enum ChildEvent {
    Death(pid_tExitStatus),
    Stop(pid_tSignal),
    Continue(pid_t),
}

The event returned from child_events() iterator

Variants

Death(pid_tExitStatus)

Child is dead, similar to what returned by reap_zombies()

Stop(pid_tSignal)

Child is stopped on a signal Signal

Continue(pid_t)

Child is continued (SIGCONT sent)

Trait Implementations

impl Clone for ChildEvent[src]

impl Copy for ChildEvent[src]

impl Debug for ChildEvent[src]

impl Eq for ChildEvent[src]

impl PartialEq<ChildEvent> for ChildEvent[src]

impl StructuralEq for ChildEvent[src]

impl StructuralPartialEq for ChildEvent[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.