pub struct TransactionLog {
pub continuation: Option<String>,
pub logs: Vec<TransactionLogEntry>,
}Expand description
Paginated transaction log response
Fields§
§continuation: Option<String>Continuation token for pagination
logs: Vec<TransactionLogEntry>List of transaction log entries
Trait Implementations§
Source§impl Clone for TransactionLog
impl Clone for TransactionLog
Source§fn clone(&self) -> TransactionLog
fn clone(&self) -> TransactionLog
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 TransactionLog
impl Debug for TransactionLog
Source§impl Default for TransactionLog
impl Default for TransactionLog
Source§fn default() -> TransactionLog
fn default() -> TransactionLog
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TransactionLog
impl<'de> Deserialize<'de> for TransactionLog
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
Source§impl Display for TransactionLog
impl Display for TransactionLog
Auto Trait Implementations§
impl Freeze for TransactionLog
impl RefUnwindSafe for TransactionLog
impl Send for TransactionLog
impl Sync for TransactionLog
impl Unpin for TransactionLog
impl UnwindSafe for TransactionLog
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