-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(example): add example for changing default Level
- Loading branch information
1 parent
42895a2
commit a1b2f8d
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
use clap::Parser; | ||
use clap_verbosity_flag::{InfoLevel, Verbosity}; | ||
|
||
#[derive(Debug, Parser)] | ||
struct DefaultCli { | ||
#[command(flatten)] | ||
verbose: Verbosity, | ||
} | ||
|
||
#[derive(Debug, Parser)] | ||
struct InfoCli { | ||
#[command(flatten)] | ||
verbose: Verbosity<InfoLevel>, | ||
} | ||
|
||
fn main() { | ||
let error_cli = DefaultCli::parse(); | ||
|
||
dbg!(&error_cli.verbose); | ||
|
||
let info_cli = InfoCli::parse(); | ||
|
||
dbg!(&info_cli.verbose); | ||
} |