pub enum ForkOutcome {
Child,
Parent {
child_pid: Pid,
},
}Expand description
Result of a fork operation.
Variants§
Auto Trait Implementations§
impl Freeze for ForkOutcome
impl RefUnwindSafe for ForkOutcome
impl Send for ForkOutcome
impl Sync for ForkOutcome
impl Unpin for ForkOutcome
impl UnsafeUnpin for ForkOutcome
impl UnwindSafe for ForkOutcome
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