Module exec
Source - BootstrapCommand
- Wrapper around
std::process::Command
. - CommandOutput
- Represents the output of an executed process.
- BehaviorOnFailure
- What should be done when the command fails.
- CommandStatus 🔒
- Represents the current status of
BootstrapCommand
. - OutputMode
- How should the output of a specific stream of the command (stdout/stderr) be handled
(whether it should be captured or printed).
- command
- Create a new BootstrapCommand. This is a helper function to make command creation
shorter than
BootstrapCommand::new
.