Enum nix::unistd::ForkResult [−][src]
pub enum ForkResult {
Parent {
child: Pid,
},
Child,
}
Expand description
Represents the successful result of calling fork
When fork
is called, the process continues execution in the parent process
and in the new child. This return type can be examined to determine whether
you are now executing in the parent process or in the child.
Variants
Parent
Fields
child: Pid
Child
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for ForkResult
impl Send for ForkResult
impl Sync for ForkResult
impl Unpin for ForkResult
impl UnwindSafe for ForkResult
Blanket Implementations
Mutably borrows from an owned value. Read more