pub struct RepeatingTransactionsResponseBody {
pub repeating_transactions: Vec<RepeatingTransactionResponse>,
}Expand description
RepeatingTransactionsResponseBody
JSON schema
{
"type": "object",
"properties": {
"repeating_transactions": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RepeatingTransactionResponse"
}
}
}
}Fields§
§repeating_transactions: Vec<RepeatingTransactionResponse>Trait Implementations§
Source§impl Clone for RepeatingTransactionsResponseBody
impl Clone for RepeatingTransactionsResponseBody
Source§fn clone(&self) -> RepeatingTransactionsResponseBody
fn clone(&self) -> RepeatingTransactionsResponseBody
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<'de> Deserialize<'de> for RepeatingTransactionsResponseBody
impl<'de> Deserialize<'de> for RepeatingTransactionsResponseBody
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<&RepeatingTransactionsResponseBody> for RepeatingTransactionsResponseBody
impl From<&RepeatingTransactionsResponseBody> for RepeatingTransactionsResponseBody
Source§fn from(value: &RepeatingTransactionsResponseBody) -> Self
fn from(value: &RepeatingTransactionsResponseBody) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RepeatingTransactionsResponseBody
impl RefUnwindSafe for RepeatingTransactionsResponseBody
impl Send for RepeatingTransactionsResponseBody
impl Sync for RepeatingTransactionsResponseBody
impl Unpin for RepeatingTransactionsResponseBody
impl UnwindSafe for RepeatingTransactionsResponseBody
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