pub enum DocSubCommand {
Build,
Tests,
}
Variants§
Trait Implementations§
Source§impl Clone for DocSubCommand
impl Clone for DocSubCommand
Source§fn clone(&self) -> DocSubCommand
fn clone(&self) -> DocSubCommand
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 DocSubCommand
impl Default for DocSubCommand
Source§fn default() -> DocSubCommand
fn default() -> DocSubCommand
Returns the “default value” for a type. Read more
Source§impl Display for DocSubCommand
impl Display for DocSubCommand
Source§impl FromArgMatches for DocSubCommand
impl FromArgMatches for DocSubCommand
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 DocSubCommand
impl FromStr for DocSubCommand
Source§impl IntoEnumIterator for DocSubCommand
impl IntoEnumIterator for DocSubCommand
type Iterator = DocSubCommandIter
fn iter() -> DocSubCommandIter ⓘ
Source§impl PartialEq for DocSubCommand
impl PartialEq for DocSubCommand
Source§impl Subcommand for DocSubCommand
impl Subcommand for DocSubCommand
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 DocSubCommand
impl TryFrom<&str> for DocSubCommand
impl StructuralPartialEq for DocSubCommand
Auto Trait Implementations§
impl Freeze for DocSubCommand
impl RefUnwindSafe for DocSubCommand
impl Send for DocSubCommand
impl Sync for DocSubCommand
impl Unpin for DocSubCommand
impl UnwindSafe for DocSubCommand
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