pub struct TransactionLogs {
pub list: Vec<TransactionLog>,
pub next_page_cursor: String,
}Expand description
Transaction log response.
Fields§
§list: Vec<TransactionLog>List of transactions
next_page_cursor: StringNext page cursor
Trait Implementations§
Source§impl Clone for TransactionLogs
impl Clone for TransactionLogs
Source§fn clone(&self) -> TransactionLogs
fn clone(&self) -> TransactionLogs
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 TransactionLogs
impl Debug for TransactionLogs
Source§impl<'de> Deserialize<'de> for TransactionLogs
impl<'de> Deserialize<'de> for TransactionLogs
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 TransactionLogs
impl RefUnwindSafe for TransactionLogs
impl Send for TransactionLogs
impl Sync for TransactionLogs
impl Unpin for TransactionLogs
impl UnsafeUnpin for TransactionLogs
impl UnwindSafe for TransactionLogs
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