pub trait IntoArgs {
    fn into_args(self, args: CommandArgs) -> CommandArgs;

    fn num_args(&self) -> usize { ... }
}
Expand description

Types compatible with command args

Required Methods

Provided Methods

Implementations on Foreign Types

Implementors

Allow to merge CommandArgs in another CommandArgs