Struct mint_proxy::MinterInfo [−][src]
pub struct MinterInfo {
pub minter: Pubkey,
pub allowance: u64,
// some fields omitted
}
Expand description
One who can mint.
Fields
minter: Pubkey
Address that can mint.
allowance: u64
Limit of number of tokens that this minter can mint. Useful for guarded launch.
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
impl BorshDeserialize for MinterInfo where
Pubkey: BorshDeserialize,
u64: BorshDeserialize,
u8: BorshDeserialize,
impl BorshDeserialize for MinterInfo where
Pubkey: BorshDeserialize,
u64: BorshDeserialize,
u8: BorshDeserialize,
impl BorshSerialize for MinterInfo where
Pubkey: BorshSerialize,
u64: BorshSerialize,
u8: BorshSerialize,
impl BorshSerialize for MinterInfo where
Pubkey: BorshSerialize,
u64: BorshSerialize,
u8: BorshSerialize,
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl RefUnwindSafe for MinterInfo
impl Send for MinterInfo
impl Sync for MinterInfo
impl Unpin for MinterInfo
impl UnwindSafe for MinterInfo
Blanket Implementations
pub default fn example() -> T
Mutably borrows from an owned value. Read more