Struct sugar_cli::common::CandyMachine
source · [−]pub struct CandyMachine {
pub authority: Pubkey,
pub wallet: Pubkey,
pub token_mint: Option<Pubkey>,
pub items_redeemed: u64,
pub data: CandyMachineData,
}Expand description
Candy machine state and config data.
Fields
wallet: Pubkeytoken_mint: Option<Pubkey>items_redeemed: u64data: CandyMachineDataTrait Implementations
sourceimpl AccountDeserialize for CandyMachine
impl AccountDeserialize for CandyMachine
sourcefn try_deserialize(buf: &mut &[u8]) -> Result<CandyMachine, Error>
fn try_deserialize(buf: &mut &[u8]) -> Result<CandyMachine, Error>
Deserializes previously initialized account data. Should fail for all
uninitialized accounts, where the bytes are zeroed. Implementations
should be unique to a particular account type so that one can never
successfully deserialize the data of one account type into another.
For example, if the SPL token program were to implement this trait,
it should be impossible to deserialize a Mint account into a token
Account. Read more
sourcefn try_deserialize_unchecked(buf: &mut &[u8]) -> Result<CandyMachine, Error>
fn try_deserialize_unchecked(buf: &mut &[u8]) -> Result<CandyMachine, Error>
Deserializes account data without checking the account discriminator. This should only be used on account initialization, when the bytes of the account are zeroed. Read more
sourceimpl AccountSerialize for CandyMachine
impl AccountSerialize for CandyMachine
sourceimpl BorshDeserialize for CandyMachine where
Pubkey: BorshDeserialize,
Option<Pubkey>: BorshDeserialize,
u64: BorshDeserialize,
CandyMachineData: BorshDeserialize,
impl BorshDeserialize for CandyMachine where
Pubkey: BorshDeserialize,
Option<Pubkey>: BorshDeserialize,
u64: BorshDeserialize,
CandyMachineData: BorshDeserialize,
sourcefn deserialize(buf: &mut &[u8]) -> Result<CandyMachine, Error>
fn deserialize(buf: &mut &[u8]) -> Result<CandyMachine, Error>
Deserializes this instance from a given slice of bytes. Updates the buffer to point at the remaining bytes. Read more
fn try_from_slice(v: &[u8]) -> Result<Self, Error>
fn try_from_slice(v: &[u8]) -> Result<Self, Error>
Deserialize this instance from a slice of bytes.
sourceimpl BorshSerialize for CandyMachine where
Pubkey: BorshSerialize,
Option<Pubkey>: BorshSerialize,
u64: BorshSerialize,
CandyMachineData: BorshSerialize,
impl BorshSerialize for CandyMachine where
Pubkey: BorshSerialize,
Option<Pubkey>: BorshSerialize,
u64: BorshSerialize,
CandyMachineData: BorshSerialize,
sourceimpl Clone for CandyMachine
impl Clone for CandyMachine
sourcefn clone(&self) -> CandyMachine
fn clone(&self) -> CandyMachine
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for CandyMachine
impl Debug for CandyMachine
sourceimpl Default for CandyMachine
impl Default for CandyMachine
sourcefn default() -> CandyMachine
fn default() -> CandyMachine
Returns the “default value” for a type. Read more
sourceimpl Discriminator for CandyMachine
impl Discriminator for CandyMachine
fn discriminator() -> [u8; 8]
Auto Trait Implementations
impl RefUnwindSafe for CandyMachine
impl Send for CandyMachine
impl Sync for CandyMachine
impl Unpin for CandyMachine
impl UnwindSafe for CandyMachine
Blanket Implementations
impl<T> AbiExample for T
impl<T> AbiExample for T
default fn example() -> T
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<T> Pointable for T
impl<T> Pointable for T
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more