Available on crate feature
tokio1 only.Expand description
Tokio-based process-wrap API.
See the crate-level doc for more information.
The recommended usage is to star-import this module:
use process_wrap::tokio::*;Structs§
- Command
Wrap - A wrapper around a
Commandthat allows for additional functionality to be added. - Kill
OnDrop kill-on-drop - Shim wrapper which sets kill-on-drop on a
Command. - Process
Group Unix and process-group - Wrapper which sets the process group of a
Command. - Process
Group Child Unix and process-group - Wrapper for
Childwhich ensures that all processes in the group are reaped. - Process
Session Unix and process-session - Wrapper which creates a new session and group for the
Command. - Reset
Sigmask Unix and reset-sigmask - Wrapper which resets the process signal mask.
Traits§
- Child
Wrapper - Wrapper for
tokio::process::Child. - Command
Wrapper - A trait for adding functionality to a
Command.