pub enum CoverageSubCommand {
Install,
Generate(GenerateCmdArgs),
}
Variants§
Install
Install grcov and its dependencies.
Generate(GenerateCmdArgs)
Generate lcov.info file. [default with default debug profile]
Trait Implementations§
Source§impl Clone for CoverageSubCommand
impl Clone for CoverageSubCommand
Source§fn clone(&self) -> CoverageSubCommand
fn clone(&self) -> CoverageSubCommand
Returns a duplicate 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 Default for CoverageSubCommand
impl Default for CoverageSubCommand
Source§impl Display for CoverageSubCommand
impl Display for CoverageSubCommand
Source§impl FromArgMatches for CoverageSubCommand
impl FromArgMatches for CoverageSubCommand
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<'b>(
&mut self,
__clap_arg_matches: &mut ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches_mut<'b>( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches
to self
.Source§impl FromStr for CoverageSubCommand
impl FromStr for CoverageSubCommand
Source§impl IntoEnumIterator for CoverageSubCommand
impl IntoEnumIterator for CoverageSubCommand
type Iterator = CoverageSubCommandIter
fn iter() -> CoverageSubCommandIter ⓘ
Source§impl PartialEq for CoverageSubCommand
impl PartialEq for CoverageSubCommand
Source§impl Subcommand for CoverageSubCommand
impl Subcommand for CoverageSubCommand
Source§fn augment_subcommands<'b>(__clap_app: Command) -> Command
fn augment_subcommands<'b>(__clap_app: Command) -> Command
Source§fn augment_subcommands_for_update<'b>(__clap_app: Command) -> Command
fn augment_subcommands_for_update<'b>(__clap_app: Command) -> Command
Append to
Command
so it can instantiate self
via
FromArgMatches::update_from_arg_matches_mut
Read moreSource§fn has_subcommand(__clap_name: &str) -> bool
fn has_subcommand(__clap_name: &str) -> bool
Test whether
Self
can parse a specific subcommandSource§impl TryFrom<&str> for CoverageSubCommand
impl TryFrom<&str> for CoverageSubCommand
impl StructuralPartialEq for CoverageSubCommand
Auto Trait Implementations§
impl Freeze for CoverageSubCommand
impl RefUnwindSafe for CoverageSubCommand
impl Send for CoverageSubCommand
impl Sync for CoverageSubCommand
impl Unpin for CoverageSubCommand
impl UnwindSafe for CoverageSubCommand
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