pub struct SpendingPlanResponse {
pub created_at: Option<String>,
pub current_iteration_number: Option<i64>,
pub guid: Option<String>,
pub updated_at: Option<String>,
pub user_guid: Option<String>,
}Expand description
SpendingPlanResponse
JSON schema
{
"type": "object",
"properties": {
"created_at": {
"examples": [
"2016-10-13T18:08:00+00:00"
],
"type": [
"string",
"null"
]
},
"current_iteration_number": {
"examples": [
1
],
"type": [
"integer",
"null"
]
},
"guid": {
"examples": [
"SPL-e5f9a5bd-c5b3-4901-bdc0-62119b9db262"
],
"type": [
"string",
"null"
]
},
"updated_at": {
"examples": [
"2016-10-13T18:09:00+00:00"
],
"type": [
"string",
"null"
]
},
"user_guid": {
"examples": [
"USR-fa7537f3-48aa-a683-a02a-b18940482f54"
],
"type": [
"string",
"null"
]
}
}
}Fields§
§created_at: Option<String>§current_iteration_number: Option<i64>§guid: Option<String>§updated_at: Option<String>§user_guid: Option<String>Trait Implementations§
Source§impl Clone for SpendingPlanResponse
impl Clone for SpendingPlanResponse
Source§fn clone(&self) -> SpendingPlanResponse
fn clone(&self) -> SpendingPlanResponse
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 SpendingPlanResponse
impl Debug for SpendingPlanResponse
Source§impl Default for SpendingPlanResponse
impl Default for SpendingPlanResponse
Source§impl<'de> Deserialize<'de> for SpendingPlanResponse
impl<'de> Deserialize<'de> for SpendingPlanResponse
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<&SpendingPlanResponse> for SpendingPlanResponse
impl From<&SpendingPlanResponse> for SpendingPlanResponse
Source§fn from(value: &SpendingPlanResponse) -> Self
fn from(value: &SpendingPlanResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SpendingPlanResponse
impl RefUnwindSafe for SpendingPlanResponse
impl Send for SpendingPlanResponse
impl Sync for SpendingPlanResponse
impl Unpin for SpendingPlanResponse
impl UnwindSafe for SpendingPlanResponse
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