pub trait ToCmd {
    // Required method
    fn add_args<'a>(&'a self, cmd: &'a mut Command) -> &'a mut Command;
}

Required Methods§

source

fn add_args<'a>(&'a self, cmd: &'a mut Command) -> &'a mut Command

Implementors§

source§

impl<T> ToCmd for Twhere T: Args,