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