Struct structopt_flags::QuietVerbose
source · pub struct QuietVerbose { /* private fields */ }Expand description
This struct implements the --verbose and the --quiet cli options
By default, the log level is set to warning.
Multiple occurrences of -v, will increase the verbosity level up to 3.
The flag -q is used to decrease verbosity.
Using it twice, will silent the log.
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 filter_level = opt.verbose.get_level_filter();
// set log level
}Trait Implementations
sourceimpl Clone for QuietVerbose
impl Clone for QuietVerbose
sourcefn clone(&self) -> QuietVerbose
fn clone(&self) -> QuietVerbose
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for QuietVerbose
impl Debug for QuietVerbose
sourceimpl Display for QuietVerbose
impl Display for QuietVerbose
sourceimpl LogLevel for QuietVerbose
impl LogLevel for QuietVerbose
sourcefn get_level_filter(&self) -> LevelFilter
fn get_level_filter(&self) -> LevelFilter
Return the level filter. Read more
sourcefn get_log_level(&self) -> Option<Level>
fn get_log_level(&self) -> Option<Level>
Return the log level. Read more
sourceimpl StructOpt for QuietVerbose
impl StructOpt for QuietVerbose
sourcefn from_clap(matches: &ArgMatches<'_>) -> Self
fn from_clap(matches: &ArgMatches<'_>) -> Self
Creates the struct from
clap::ArgMatches. It cannot fail
with a parameter generated by clap by construction. Read moresourcefn from_args() -> Selfwhere
Self: Sized,
fn from_args() -> Selfwhere
Self: Sized,
Gets the struct from the command line arguments. Print the
error message and quit the program in case of failure. Read more
sourcefn from_iter<I>(iter: I) -> Selfwhere
Self: Sized,
I: IntoIterator,
<I as IntoIterator>::Item: Into<OsString> + Clone,
fn from_iter<I>(iter: I) -> Selfwhere
Self: Sized,
I: IntoIterator,
<I as IntoIterator>::Item: Into<OsString> + Clone,
Gets the struct from any iterator such as a
Vec of your making.
Print the error message and quit the program in case of failure. Read moresourcefn from_iter_safe<I>(iter: I) -> Result<Self, Error>where
Self: Sized,
I: IntoIterator,
<I as IntoIterator>::Item: Into<OsString> + Clone,
fn from_iter_safe<I>(iter: I) -> Result<Self, Error>where
Self: Sized,
I: IntoIterator,
<I as IntoIterator>::Item: Into<OsString> + Clone,
Gets the struct from any iterator such as a
Vec of your making. Read moreAuto Trait Implementations
impl RefUnwindSafe for QuietVerbose
impl Send for QuietVerbose
impl Sync for QuietVerbose
impl Unpin for QuietVerbose
impl UnwindSafe for QuietVerbose
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more