enum AmazonCommand {
ScanRatings(ScanRatings),
ScanReviews(ScanReviews),
ClusterRatings(ClusterRatings),
}
Variants§
Trait Implementations§
Source§impl Command for AmazonCommand
impl Command for AmazonCommand
Source§impl Debug for AmazonCommand
impl Debug for AmazonCommand
Source§impl From<ClusterRatings> for AmazonCommand
impl From<ClusterRatings> for AmazonCommand
Source§fn from(v: ClusterRatings) -> AmazonCommand
fn from(v: ClusterRatings) -> AmazonCommand
Converts to this type from the input type.
Source§impl From<ScanRatings> for AmazonCommand
impl From<ScanRatings> for AmazonCommand
Source§fn from(v: ScanRatings) -> AmazonCommand
fn from(v: ScanRatings) -> AmazonCommand
Converts to this type from the input type.
Source§impl From<ScanReviews> for AmazonCommand
impl From<ScanReviews> for AmazonCommand
Source§fn from(v: ScanReviews) -> AmazonCommand
fn from(v: ScanReviews) -> AmazonCommand
Converts to this type from the input type.
Source§impl FromArgMatches for AmazonCommand
impl FromArgMatches for AmazonCommand
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 Subcommand for AmazonCommand
impl Subcommand for AmazonCommand
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
Source§fn has_subcommand(__clap_name: &str) -> bool
fn has_subcommand(__clap_name: &str) -> bool
Test whether
Self
can parse a specific subcommandSource§impl TryInto<ClusterRatings> for AmazonCommand
impl TryInto<ClusterRatings> for AmazonCommand
Source§impl TryInto<ScanRatings> for AmazonCommand
impl TryInto<ScanRatings> for AmazonCommand
Source§impl TryInto<ScanReviews> for AmazonCommand
impl TryInto<ScanReviews> for AmazonCommand
Auto Trait Implementations§
impl Freeze for AmazonCommand
impl RefUnwindSafe for AmazonCommand
impl Send for AmazonCommand
impl Sync for AmazonCommand
impl Unpin for AmazonCommand
impl UnwindSafe for AmazonCommand
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