[][src]Enum pete::ptracer::Stop

pub enum Stop {
    AttachStop(Pid),
    SignalDeliveryStop(PidSignal),
    GroupStop(PidSignal),
    SyscallEnterStop(Pid),
    SyscallExitStop(Pid),
    Clone(PidPid),
    Fork(PidPid),
    Exec(PidPid),
    Exiting(Pidi32),
    Signaling(PidSignalbool),
    Vfork(PidPid),
    VforkDone(PidPid),
    Seccomp(u16),
}

Various ptrace-stops.

Variants

AttachStop(Pid)
SignalDeliveryStop(PidSignal)
GroupStop(PidSignal)
SyscallEnterStop(Pid)
SyscallExitStop(Pid)
Clone(PidPid)
Fork(PidPid)
Exec(PidPid)
Exiting(Pidi32)
Signaling(PidSignalbool)
Vfork(PidPid)
VforkDone(PidPid)
Seccomp(u16)

Trait Implementations

impl Clone for Stop[src]

impl Copy for Stop[src]

impl Debug for Stop[src]

impl Eq for Stop[src]

impl PartialEq<Stop> for Stop[src]

impl StructuralEq for Stop[src]

impl StructuralPartialEq for Stop[src]

Auto Trait Implementations

impl RefUnwindSafe for Stop

impl Send for Stop

impl Sync for Stop

impl Unpin for Stop

impl UnwindSafe for Stop

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.