Enum nix::unistd::ForkResult [−][src]
pub enum ForkResult { Parent { child: Pid, }, Child, }
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
Show fields
Fields of Parent
child: Pid
Implementations
impl ForkResult
[src]
impl ForkResult
[src]Trait Implementations
impl Clone for ForkResult
[src]
impl Clone for ForkResult
[src]