#[repr(u8)]pub enum SpawnStage {
Fork = 1,
ProcessGroup = 2,
CurrentDirectory = 3,
DescriptorDuplication = 4,
Execute = 5,
StartupHandshake = 6,
Identity = 7,
SignalState = 8,
}Expand description
A reviewed child-side operation that can fail before execve.
Variants§
Fork = 1
ProcessGroup = 2
CurrentDirectory = 3
DescriptorDuplication = 4
Execute = 5
StartupHandshake = 6
Identity = 7
SignalState = 8
Trait Implementations§
Source§impl Clone for SpawnStage
impl Clone for SpawnStage
Source§fn clone(&self) -> SpawnStage
fn clone(&self) -> SpawnStage
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for SpawnStage
Source§impl Debug for SpawnStage
impl Debug for SpawnStage
Source§impl Display for SpawnStage
impl Display for SpawnStage
impl Eq for SpawnStage
Source§impl PartialEq for SpawnStage
impl PartialEq for SpawnStage
impl StructuralPartialEq for SpawnStage
Auto Trait Implementations§
impl Freeze for SpawnStage
impl RefUnwindSafe for SpawnStage
impl Send for SpawnStage
impl Sync for SpawnStage
impl Unpin for SpawnStage
impl UnsafeUnpin for SpawnStage
impl UnwindSafe for SpawnStage
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