pub struct TransactionLogResult {
pub next_page_cursor: String,
pub list: Vec<TransactionLogEntry>,
}Expand description
Summarizes transaction log data for an account.
Part of the TransactionLogResponse, this struct organizes transaction data by pagination cursor and a list of transaction records. Bots use this to process and audit trading activity.
Fields§
§next_page_cursor: StringThe cursor for pagination.
Indicates the next page of results for large datasets. Bots should use this for paginated requests to fetch additional transaction logs.
list: Vec<TransactionLogEntry>A list of transaction log entries.
Contains detailed transaction data, such as trades, fees, and funding. Bots use this to analyze trading activity and calculate performance metrics.
Trait Implementations§
Source§impl Clone for TransactionLogResult
impl Clone for TransactionLogResult
Source§fn clone(&self) -> TransactionLogResult
fn clone(&self) -> TransactionLogResult
Returns a copy 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 TransactionLogResult
impl Debug for TransactionLogResult
Source§impl<'de> Deserialize<'de> for TransactionLogResult
impl<'de> Deserialize<'de> for TransactionLogResult
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 TransactionLogResult
impl RefUnwindSafe for TransactionLogResult
impl Send for TransactionLogResult
impl Sync for TransactionLogResult
impl Unpin for TransactionLogResult
impl UnwindSafe for TransactionLogResult
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