Struct cargo_tarpaulin::args::RunTypesArgs
source · pub struct RunTypesArgs {
pub run_types: Vec<RunType>,
pub benches: bool,
pub doc: bool,
pub all_targets: bool,
pub lib: bool,
pub bins: bool,
pub examples: bool,
pub tests: bool,
}
Fields§
§run_types: Vec<RunType>
Type of the coverage run
benches: bool
Test all benches
doc: bool
Test only this library’s documentation
all_targets: bool
Test all targets (excluding doctests)
lib: bool
Test only this package’s library unit tests
bins: bool
Test all binaries
examples: bool
Test all examples
tests: bool
Test all tests
Implementations§
Trait Implementations§
source§impl Args for RunTypesArgs
impl Args for RunTypesArgs
source§fn augment_args<'b>(__clap_app: Command) -> Command
fn augment_args<'b>(__clap_app: Command) -> Command
source§impl Clone for RunTypesArgs
impl Clone for RunTypesArgs
source§fn clone(&self) -> RunTypesArgs
fn clone(&self) -> RunTypesArgs
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for RunTypesArgs
impl Debug for RunTypesArgs
source§impl FromArgMatches for RunTypesArgs
impl FromArgMatches for RunTypesArgs
source§fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
source§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches,
) -> Result<Self, Error>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches, ) -> Result<Self, Error>
source§fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches
to self
.source§fn update_from_arg_matches_mut(
&mut self,
__clap_arg_matches: &mut ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches_mut( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches
to self
.Auto Trait Implementations§
impl Freeze for RunTypesArgs
impl RefUnwindSafe for RunTypesArgs
impl Send for RunTypesArgs
impl Sync for RunTypesArgs
impl Unpin for RunTypesArgs
impl UnwindSafe for RunTypesArgs
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)