pub struct TransactionList {
pub transactions: Vec<Transaction>,
pub links: TransactionListLinks,
}
Expand description
Describes a list of Transactions in transactions response.
Fields§
§transactions: Vec<Transaction>
§links: TransactionListLinks
Trait Implementations§
Source§impl Debug for TransactionList
impl Debug for TransactionList
Source§impl<'de> Deserialize<'de> for TransactionList
impl<'de> Deserialize<'de> for TransactionList
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 TransactionList
impl RefUnwindSafe for TransactionList
impl Send for TransactionList
impl Sync for TransactionList
impl Unpin for TransactionList
impl UnwindSafe for TransactionList
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