1pub trait ToCommand { 2 fn to_command(&self) -> Vec<String>; 3 4 fn to_single_command(&self) -> String { 5 self.to_command().join(" ") 6 } 7}