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