Enum sugar_cli::cli::GuardCommand
source · pub enum GuardCommand {
Add {
keypair: Option<String>,
rpc_url: Option<String>,
cache: String,
config: String,
candy_machine: Option<String>,
candy_guard: Option<String>,
},
Remove {
keypair: Option<String>,
rpc_url: Option<String>,
cache: String,
candy_machine: Option<String>,
candy_guard: Option<String>,
},
Show {
keypair: Option<String>,
rpc_url: Option<String>,
cache: String,
candy_guard: Option<String>,
},
Update {
keypair: Option<String>,
rpc_url: Option<String>,
cache: String,
config: String,
candy_guard: Option<String>,
},
Withdraw {
keypair: Option<String>,
rpc_url: Option<String>,
cache: String,
candy_guard: Option<String>,
},
}Variants§
Add
Fields
Add a candy guard on a candy machine
Remove
Fields
Remove a candy guard from a candy machine
Show
Fields
Show the on-chain config of an existing candy guard
Update
Fields
Update the configuration of a candy guard
Withdraw
Fields
Withdraw funds from a candy guard account closing it
Trait Implementations§
source§impl FromArgMatches for GuardCommand
impl FromArgMatches for GuardCommand
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 GuardCommand
impl Subcommand for GuardCommand
source§fn augment_subcommands<'b>(__clap_app: Command<'b>) -> Command<'b>
fn augment_subcommands<'b>(__clap_app: Command<'b>) -> Command<'b>
source§fn augment_subcommands_for_update<'b>(__clap_app: Command<'b>) -> Command<'b>
fn augment_subcommands_for_update<'b>(__clap_app: Command<'b>) -> Command<'b>
source§fn has_subcommand(__clap_name: &str) -> bool
fn has_subcommand(__clap_name: &str) -> bool
Test whether
Self can parse a specific subcommand