pub trait AppendToCmdArgs {
// Required method
fn append(&self, cmd: &mut Command);
}Expand description
This trait says that a given implementor is able to properly add itself
to the command represented by cmd.
pub trait AppendToCmdArgs {
// Required method
fn append(&self, cmd: &mut Command);
}This trait says that a given implementor is able to properly add itself
to the command represented by cmd.