1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
//! `structopt-flags` is a collection of reusable CLI flags and options
//! based on structopt
//!
//! Every flag or option is already pre-configured and can be used marking the field as `flatten`
//!
//! Currently, a set of verbosity flags and log level option are provided.
//! Some flags and options are provided in multiple configuration, to leave the choice to the
//! developer which one to use.
//! For instance, there are 4 type for vebosity flag:
//! * Verbose: -v flag, it provides a log level with Error as default level
//! * QuietVerbose: -v flag to increase vebosity, -q to decrease it; default level: Warning
//! * SimpleVebose: -v flag as boolean, no default log level provided
//! * VeboseNoDef: -v flag, to increase verbosity, but without a default value
//! # Example
//! ```rust
//! extern crate structopt_flags;
//! #[macro_use]
//! extern crate structopt;
//!
//! use structopt::StructOpt;
//! use structopt_flags::LogLevel; // to access get_log_level
//!
//! #[derive(Debug, StructOpt)]
//! #[structopt(name = "verbose", about = "An example using verbose flag")]
//! struct Opt {
//! #[structopt(flatten)]
//! verbose: structopt_flags::Verbose,
//! }
//!
//! fn main() {
//! let opt = Opt::from_args();
//! let log_level_filter = opt.verbose.get_level_filter();
//! }
//! ```
use ;
pub use ;
/// This trait is designed to provide a log level filter, compatible with the Log crates, derived
/// from an option or a flag. Options that can induce a log level, can implement this trait
///
/// If the simplelog features is configured, the set_log_level() function will provide an easy way
/// to set the log level to the TermLogger
/// This trait is designed to provide a rude form of default value for options
/// If an option doesn't have a default value, it will implement this trait
/// This trait is designed to provide a way to set the log level, when the option
/// or the flag doesn't have a default level
pub use crateConfigFile;
pub use crateConfigFileNoDef;
pub use crateForceFlag;
pub use crateHostOpt;
pub use crateHostParam;
pub use crateHostV4Opt;
pub use crateHostV4Param;
pub use crateHostV6Opt;
pub use crateHostV6Param;
pub use crateLogLevelNoDef;
pub use crateLogLevelNoDefLower;
pub use crateLogLevelOpt;
pub use crateLogLevelOptLower;
pub use crateQuietVerbose;
pub use crateSimpleVerbose;
pub use crateVerbose;
pub use crateVerboseNoDef;