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