Skip to main content

Crate spargio_process

Crate spargio_process 

Source
Expand description

Process companion APIs for spargio runtimes.

These helpers expose async process status/output through spargio’s spawn_blocking bridge.

Structs§

ChildHandle
Async wrapper around a spawned child process.
CommandBuilder
Fluent builder for process commands.
CommandOptions
Options applied to blocking process operations.

Functions§

output
Runs command and resolves with captured output.
output_with_options
Runs command and resolves with captured output using custom options.
spawn
Spawns command and returns a handle for further interaction.
spawn_with_options
Spawns command and returns a handle for further interaction using options.
status
Runs command and resolves with its exit status.
status_with_options
Runs command and resolves with its exit status using custom options.