Struct quarry_mint_wrapper::Minter
source · [−]pub struct Minter {
pub mint_wrapper: Pubkey,
pub minter_authority: Pubkey,
pub bump: u8,
pub index: u64,
pub allowance: u64,
pub total_minted: u64,
}Expand description
One who can mint.
seeds = [
b"MintWrapperMinter",
auth.mint_wrapper.key().to_bytes().as_ref(),
minter_authority.key().to_bytes().as_ref(),
&[bump]
],Fields
mint_wrapper: PubkeyThe mint wrapper.
Address that can mint.
bump: u8Bump seed.
index: u64Auto-incrementing index of the Minter.
allowance: u64Limit of number of tokens that this Minter can mint.
total_minted: u64Cumulative sum of the number of tokens ever minted by this Minter.
Implementations
Trait Implementations
sourceimpl AccountDeserialize for Minter
impl AccountDeserialize for Minter
sourcefn try_deserialize(buf: &mut &[u8]) -> Result<Self>
fn try_deserialize(buf: &mut &[u8]) -> Result<Self>
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
sourceimpl AccountSerialize for Minter
impl AccountSerialize for Minter
sourceimpl BorshDeserialize for Minter where
Pubkey: BorshDeserialize,
Pubkey: BorshDeserialize,
u8: BorshDeserialize,
u64: BorshDeserialize,
u64: BorshDeserialize,
u64: BorshDeserialize,
impl BorshDeserialize for Minter where
Pubkey: BorshDeserialize,
Pubkey: BorshDeserialize,
u8: BorshDeserialize,
u64: BorshDeserialize,
u64: BorshDeserialize,
u64: BorshDeserialize,
sourceimpl BorshSerialize for Minter where
Pubkey: BorshSerialize,
Pubkey: BorshSerialize,
u8: BorshSerialize,
u64: BorshSerialize,
u64: BorshSerialize,
u64: BorshSerialize,
impl BorshSerialize for Minter where
Pubkey: BorshSerialize,
Pubkey: BorshSerialize,
u8: BorshSerialize,
u64: BorshSerialize,
u64: BorshSerialize,
u64: BorshSerialize,
sourceimpl Discriminator for Minter
impl Discriminator for Minter
fn discriminator() -> [u8; 8]
Auto Trait Implementations
impl RefUnwindSafe for Minter
impl Send for Minter
impl Sync for Minter
impl Unpin for Minter
impl UnwindSafe for Minter
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> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more