pub struct TransactionList {
pub transactions: Vec<Transaction>,
}Expand description
A list of transactions.
JSON schema
{
"title": "TransactionList",
"description": "A list of transactions.",
"type": "object",
"required": [
"transactions"
],
"properties": {
"transactions": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Transaction"
}
}
},
"x-stainless-model": "transactions.transaction_list"
}Fields§
§transactions: Vec<Transaction>Trait Implementations§
Source§impl Clone for TransactionList
impl Clone for TransactionList
Source§fn clone(&self) -> TransactionList
fn clone(&self) -> TransactionList
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 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
Source§impl From<&TransactionList> for TransactionList
impl From<&TransactionList> for TransactionList
Source§fn from(value: &TransactionList) -> Self
fn from(value: &TransactionList) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TransactionList
impl RefUnwindSafe for TransactionList
impl Send for TransactionList
impl Sync for TransactionList
impl Unpin for TransactionList
impl UnsafeUnpin 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