pub struct TransferHistory {
pub total: u64,
pub rows: Vec<TransferRecord>,
}Expand description
Transfer history response (paginated).
Fields§
§total: u64Total count.
rows: Vec<TransferRecord>Transfer records.
Trait Implementations§
Source§impl Clone for TransferHistory
impl Clone for TransferHistory
Source§fn clone(&self) -> TransferHistory
fn clone(&self) -> TransferHistory
Returns a duplicate 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 Debug for TransferHistory
impl Debug for TransferHistory
Source§impl<'de> Deserialize<'de> for TransferHistory
impl<'de> Deserialize<'de> for TransferHistory
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 TransferHistory
impl RefUnwindSafe for TransferHistory
impl Send for TransferHistory
impl Sync for TransferHistory
impl Unpin for TransferHistory
impl UnwindSafe for TransferHistory
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