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.

Required Methods§

source

fn append(&self, cmd: &mut Command)

Implementors§