Expand description
Process companion APIs for spargio runtimes.
These helpers expose async process status/output through spargio’s
spawn_blocking bridge.
Structs§
- Child
Handle - Async wrapper around a spawned child process.
- Command
Builder - Fluent builder for process commands.
- Command
Options - Options applied to blocking process operations.
Functions§
- output
- Runs
commandand resolves with captured output. - output_
with_ options - Runs
commandand resolves with captured output using custom options. - spawn
- Spawns
commandand returns a handle for further interaction. - spawn_
with_ options - Spawns
commandand returns a handle for further interaction using options. - status
- Runs
commandand resolves with its exit status. - status_
with_ options - Runs
commandand resolves with its exit status using custom options.