Enum sugar_cli::cli::FreezeCommand
source · pub enum FreezeCommand {
Initialize {
keypair: Option<String>,
rpc_url: Option<String>,
cache: String,
config: String,
candy_guard: Option<String>,
candy_machine: Option<String>,
label: Option<String>,
period: u64,
},
Thaw {Show 13 fields
keypair: Option<String>,
rpc_url: Option<String>,
cache: String,
config: String,
all: bool,
nft_mint: Option<String>,
candy_guard: Option<String>,
candy_machine: Option<String>,
destination: Option<String>,
label: Option<String>,
use_cache: bool,
timeout: Option<u64>,
token: bool,
},
UnlockFunds {
keypair: Option<String>,
rpc_url: Option<String>,
cache: String,
config: String,
candy_guard: Option<String>,
candy_machine: Option<String>,
destination: Option<String>,
label: Option<String>,
token: bool,
},
}Variants§
Initialize
Fields
Initialize the freeze escrow account.
Thaw
Fields
Thaw a NFT or all NFTs in a candy guard.
UnlockFunds
Fields
Unlock treasury funds after freeze is turned off or expires.
Trait Implementations§
source§impl FromArgMatches for FreezeCommand
impl FromArgMatches for FreezeCommand
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 FreezeCommand
impl Subcommand for FreezeCommand
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 subcommandAuto Trait Implementations§
impl RefUnwindSafe for FreezeCommand
impl Send for FreezeCommand
impl Sync for FreezeCommand
impl Unpin for FreezeCommand
impl UnwindSafe for FreezeCommand
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere T: 'a,
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