Trait super_process::base::CommandBase
source · pub trait CommandBase {
// Required method
async fn setup_command(self) -> Result<Command, SetupError>;
}Expand description
Declare higher-level operations which desugar to command lines by implementing this trait.
Required Methods§
sourceasync fn setup_command(self) -> Result<Command, SetupError>
async fn setup_command(self) -> Result<Command, SetupError>
Generate a command line from the given object.
Object Safety§
This trait is not object safe.