Struct shared_child::SharedChild[][src]

pub struct SharedChild { /* fields omitted */ }

Implementations

Spawn a new SharedChild from a std::process::Command.

Return the child process ID.

Wait for the child to exit, blocking the current thread, and return its exit status.

Return the child’s exit status if it has already exited. If the child is still running, return Ok(None).

Send a kill signal to the child. On Unix this sends SIGKILL, and you should call wait afterwards to avoid leaving a zombie. If the process has already been waited on, this returns Ok(()) and does nothing.

Consume the SharedChild and return the std::process::Child it contains.

We never reap the child process except through Child::wait, so the child object’s inner state is correct, even if it was waited on while it was shared.

Trait Implementations

Formats the value using the given formatter. Read more

Send a signal to the child process with libc::kill. If the process has already been waited on, this returns Ok(()) and does nothing. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.