pub struct UniversalTransferRecordsResponse {
pub list: Vec<UniversalTransferRecord>,
pub next_page_cursor: String,
}Expand description
Universal transfer records response
Fields§
§list: Vec<UniversalTransferRecord>List of universal transfer records
next_page_cursor: StringNext page cursor
Trait Implementations§
Source§impl Clone for UniversalTransferRecordsResponse
impl Clone for UniversalTransferRecordsResponse
Source§fn clone(&self) -> UniversalTransferRecordsResponse
fn clone(&self) -> UniversalTransferRecordsResponse
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<'de> Deserialize<'de> for UniversalTransferRecordsResponse
impl<'de> Deserialize<'de> for UniversalTransferRecordsResponse
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 UniversalTransferRecordsResponse
impl RefUnwindSafe for UniversalTransferRecordsResponse
impl Send for UniversalTransferRecordsResponse
impl Sync for UniversalTransferRecordsResponse
impl Unpin for UniversalTransferRecordsResponse
impl UnsafeUnpin for UniversalTransferRecordsResponse
impl UnwindSafe for UniversalTransferRecordsResponse
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