pub struct TransactionLogResult {
pub list: Vec<TransactionLog>,
pub next_page_cursor: Option<String>,
}Expand description
Transaction log result.
Fields§
§list: Vec<TransactionLog>List of transaction logs.
next_page_cursor: Option<String>Cursor for next page.
Trait Implementations§
Source§impl Clone for TransactionLogResult
impl Clone for TransactionLogResult
Source§fn clone(&self) -> TransactionLogResult
fn clone(&self) -> TransactionLogResult
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 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