pub enum ContractCliAction {
Abi,
Build(BuildArgs),
BuildDbg(BuildDbgArgs),
Twiggy(TwiggyArgs),
Clean,
Update,
GenerateSnippets(GenerateSnippetsArgs),
GenerateProxies(GenerateProxyArgs),
}Variants§
Abi
Build(BuildArgs)
BuildDbg(BuildDbgArgs)
Twiggy(TwiggyArgs)
Clean
Update
GenerateSnippets(GenerateSnippetsArgs)
GenerateProxies(GenerateProxyArgs)
Trait Implementations§
source§impl CliArgsToRaw for ContractCliAction
impl CliArgsToRaw for ContractCliAction
source§impl Clone for ContractCliAction
impl Clone for ContractCliAction
source§fn clone(&self) -> ContractCliAction
fn clone(&self) -> ContractCliAction
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 ContractCliAction
impl Debug for ContractCliAction
source§impl Default for ContractCliAction
impl Default for ContractCliAction
source§fn default() -> ContractCliAction
fn default() -> ContractCliAction
Returns the “default value” for a type. Read more
source§impl FromArgMatches for ContractCliAction
impl FromArgMatches for ContractCliAction
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 PartialEq for ContractCliAction
impl PartialEq for ContractCliAction
source§fn eq(&self, other: &ContractCliAction) -> bool
fn eq(&self, other: &ContractCliAction) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Subcommand for ContractCliAction
impl Subcommand for ContractCliAction
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 subcommandimpl Eq for ContractCliAction
impl StructuralPartialEq for ContractCliAction
Auto Trait Implementations§
impl Freeze for ContractCliAction
impl RefUnwindSafe for ContractCliAction
impl Send for ContractCliAction
impl Sync for ContractCliAction
impl Unpin for ContractCliAction
impl UnwindSafe for ContractCliAction
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.