pub struct NftMint<'a> {
pub owner_id: &'a AccountIdRef,
pub token_ids: &'a [&'a str],
pub memo: Option<&'a str>,
}
Expand description
Data to log for an NFT mint event. To log this event, call .emit()
.
Fields§
§owner_id: &'a AccountIdRef
§token_ids: &'a [&'a str]
§memo: Option<&'a str>
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for NftMint<'a>
impl<'a> RefUnwindSafe for NftMint<'a>
impl<'a> Send for NftMint<'a>
impl<'a> Sync for NftMint<'a>
impl<'a> Unpin for NftMint<'a>
impl<'a> UnwindSafe for NftMint<'a>
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