pub struct MinterMintEvent {
pub mint_wrapper: Pubkey,
pub minter: Pubkey,
pub amount: u64,
pub destination: Pubkey,
}Expand description
Emitted when a Minter performs a mint.
Fields§
§mint_wrapper: PubkeyThe MintWrapper.
minter: PubkeyThe Minter.
amount: u64Amount minted.
destination: PubkeyMint destination.
Trait Implementations§
Source§impl BorshDeserialize for MinterMintEvent
impl BorshDeserialize for MinterMintEvent
Source§impl BorshSerialize for MinterMintEvent
impl BorshSerialize for MinterMintEvent
Source§impl Discriminator for MinterMintEvent
impl Discriminator for MinterMintEvent
fn discriminator() -> [u8; 8]
Auto Trait Implementations§
impl Freeze for MinterMintEvent
impl RefUnwindSafe for MinterMintEvent
impl Send for MinterMintEvent
impl Sync for MinterMintEvent
impl Unpin for MinterMintEvent
impl UnsafeUnpin for MinterMintEvent
impl UnwindSafe for MinterMintEvent
Blanket Implementations§
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more