Struct structopt_flags::VerboseNoDef
source · pub struct VerboseNoDef { /* private fields */ }Expand description
This struct provides the --verbose cli option, without a predefined default
Multiple occurrences, will increase the verbosity level
extern crate log;
extern crate structopt_flags;
#[macro_use]
extern crate structopt;
use log::LevelFilter;
use structopt::StructOpt;
use structopt_flags::GetWithDefault; // to access get_log_level
#[derive(Debug, StructOpt)]
#[structopt( name = "verbose_no_def", about = "An example using verbose flag with no predefined default")]
struct Opt {
#[structopt(flatten)]
verbose: structopt_flags::VerboseNoDef,
}
fn main() {
let opt = Opt::from_args();
let filter_level = opt.verbose.get_with_default(LevelFilter::Off);
// set log level
}Trait Implementations
sourceimpl Clone for VerboseNoDef
impl Clone for VerboseNoDef
sourcefn clone(&self) -> VerboseNoDef
fn clone(&self) -> VerboseNoDef
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 VerboseNoDef
impl Debug for VerboseNoDef
sourceimpl GetWithDefault for VerboseNoDef
impl GetWithDefault for VerboseNoDef
type Item = LevelFilter
sourcefn get_with_default(&self, default: Self::Item) -> Self::Item
fn get_with_default(&self, default: Self::Item) -> Self::Item
This function can be used to retrieve the value of the command line option
taking in account the default value used as argument Read more
sourceimpl StructOpt for VerboseNoDef
impl StructOpt for VerboseNoDef
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 VerboseNoDef
impl Send for VerboseNoDef
impl Sync for VerboseNoDef
impl Unpin for VerboseNoDef
impl UnwindSafe for VerboseNoDef
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