pub struct MtTransferEvent<'a> {
pub authorized_id: Option<Cow<'a, AccountIdRef>>,
pub old_owner_id: Cow<'a, AccountIdRef>,
pub new_owner_id: Cow<'a, AccountIdRef>,
pub token_ids: Cow<'a, [TokenId]>,
pub amounts: Cow<'a, [U128]>,
pub memo: Option<Cow<'a, str>>,
}
Fields§
§old_owner_id: Cow<'a, AccountIdRef>
§new_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 MtTransferEvent<'a>
impl<'a> Clone for MtTransferEvent<'a>
Source§fn clone(&self) -> MtTransferEvent<'a>
fn clone(&self) -> MtTransferEvent<'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 MtTransferEvent<'a>
impl<'a> Debug for MtTransferEvent<'a>
Source§impl<'de, 'a> Deserialize<'de> for MtTransferEvent<'a>
impl<'de, 'a> Deserialize<'de> for MtTransferEvent<'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 MtTransferEvent<'a>
impl<'a> RefUnwindSafe for MtTransferEvent<'a>
impl<'a> Send for MtTransferEvent<'a>
impl<'a> Sync for MtTransferEvent<'a>
impl<'a> Unpin for MtTransferEvent<'a>
impl<'a> UnwindSafe for MtTransferEvent<'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