Struct quarry_mint_wrapper::MintWrapper [−][src]
pub struct MintWrapper {
pub base: Pubkey,
pub bump: u8,
pub hard_cap: u64,
pub admin: Pubkey,
pub pending_admin: Pubkey,
pub token_mint: Pubkey,
pub num_minters: u64,
pub total_allowance: u64,
pub total_minted: u64,
}Expand description
Fields
base: PubkeyBase account.
bump: u8Bump for allowing the proxy mint authority to sign.
hard_cap: u64Maximum number of tokens that can be issued.
admin: PubkeyAdmin account.
pending_admin: PubkeyNext admin account.
token_mint: PubkeyMint of the token.
num_minters: u64Number of Minters.
total_allowance: u64Total allowance outstanding.
total_minted: u64Total amount of tokens minted through the MintWrapper.
Trait Implementations
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
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl RefUnwindSafe for MintWrapper
impl Send for MintWrapper
impl Sync for MintWrapper
impl Unpin for MintWrapper
impl UnwindSafe for MintWrapper
Blanket Implementations
pub default fn example() -> T
Mutably borrows from an owned value. Read more
