pub struct MtMintEvent<'a> {
pub owner_id: Cow<'a, AccountIdRef>,
pub token_ids: Cow<'a, [TokenId]>,
pub amounts: Cow<'a, [U128]>,
pub memo: Option<Cow<'a, str>>,
}
Fields§
§owner_id: Cow<'a, AccountIdRef>
§token_ids: Cow<'a, [TokenId]>
§amounts: Cow<'a, [U128]>
§memo: Option<Cow<'a, str>>
Trait Implementations§
Source§impl<'a> Clone for MtMintEvent<'a>
impl<'a> Clone for MtMintEvent<'a>
Source§fn clone(&self) -> MtMintEvent<'a>
fn clone(&self) -> MtMintEvent<'a>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'a> Debug for MtMintEvent<'a>
impl<'a> Debug for MtMintEvent<'a>
Source§impl<'de, 'a> Deserialize<'de> for MtMintEvent<'a>
impl<'de, 'a> Deserialize<'de> for MtMintEvent<'a>
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl<'a> Freeze for MtMintEvent<'a>
impl<'a> RefUnwindSafe for MtMintEvent<'a>
impl<'a> Send for MtMintEvent<'a>
impl<'a> Sync for MtMintEvent<'a>
impl<'a> Unpin for MtMintEvent<'a>
impl<'a> UnwindSafe for MtMintEvent<'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