Trait badargs::CliArg[][src]

pub trait CliArg: Any {
    type Content: CliReturnValue;
    fn long() -> &'static str;
fn short() -> Option<char>; }
Expand description

Implemented by a user provided type that contains all info for a single command line argument

This is mostly done using unit structs and the arg! macro

Associated Types

Required methods

Implementors