pub trait ToArgs {
// Required method
fn to_args(&self) -> Vec<String>;
}Expand description
An implementor can convert itself into a list of command-line arguments
pub trait ToArgs {
// Required method
fn to_args(&self) -> Vec<String>;
}An implementor can convert itself into a list of command-line arguments