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