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