1 2 3 4 5 6 7 8 9 10
use clap::Arg; /// Defines the max table width argument. pub fn max_width<'a>() -> Arg<'a, 'a> { Arg::with_name("max-table-width") .help("Defines a maximum width for the table") .short("w") .long("max-width") .value_name("INT") }