Module process_wrap::tokio
source · 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§
- KillOnDrop
kill-on-dropShim wrapper which sets kill-on-drop on aCommand. - ProcessGroupUnix and
process-groupWrapper which sets the process group of aCommand. - ProcessGroupChildUnix and
process-groupWrapper forChildwhich ensures that all processes in the group are reaped. - ProcessSessionUnix and
process-sessionWrapper which creates a new session and group for theCommand. - A wrapper around a
Commandthat allows for additional functionality to be added.
Traits§
- Wrapper for
tokio::process::Child. - A trait for adding functionality to a
Command.