generated from PlexSheep/rs-base
This commit is contained in:
parent
399021ecc6
commit
18cccddbb2
|
@ -228,12 +228,12 @@ impl Format {
|
||||||
///
|
///
|
||||||
/// ```
|
/// ```
|
||||||
/// use clap::Parser;
|
/// use clap::Parser;
|
||||||
/// use numf::parser::numf_parser;
|
/// use numf::format::numf_parser;
|
||||||
///
|
///
|
||||||
/// #[derive(Parser)]
|
/// #[derive(Parser)]
|
||||||
/// struct Args {
|
/// struct Args {
|
||||||
/// #[clap(short, long, value_parser=numf_parser::<u32>)]
|
/// #[clap(short, long, value_parser=numf_parser)]
|
||||||
/// address: u32,
|
/// address: u128,
|
||||||
/// }
|
/// }
|
||||||
/// let args = Args::parse_from(&["", "-a", "0x10"]);
|
/// let args = Args::parse_from(&["", "-a", "0x10"]);
|
||||||
/// assert_eq!(args.address, 16);
|
/// assert_eq!(args.address, 16);
|
||||||
|
|
Reference in New Issue