pub struct BatchTransferEntry {
pub recipient: AccountId,
pub recipient_pubkey: Option<Vec<u8>>,
pub amount: u128,
}Fields§
§recipient: AccountId§recipient_pubkey: Option<Vec<u8>>Omit for accounts already known on-chain (saves 1,952 bytes per recipient).
amount: u128Trait Implementations§
Source§impl Clone for BatchTransferEntry
impl Clone for BatchTransferEntry
Source§fn clone(&self) -> BatchTransferEntry
fn clone(&self) -> BatchTransferEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BatchTransferEntry
impl Debug for BatchTransferEntry
Source§impl<'de> Deserialize<'de> for BatchTransferEntry
impl<'de> Deserialize<'de> for BatchTransferEntry
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 Freeze for BatchTransferEntry
impl RefUnwindSafe for BatchTransferEntry
impl Send for BatchTransferEntry
impl Sync for BatchTransferEntry
impl Unpin for BatchTransferEntry
impl UnsafeUnpin for BatchTransferEntry
impl UnwindSafe for BatchTransferEntry
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