pub struct MonthlyCashFlowProfileRequest {
pub goals_contribution: Option<f64>,
pub uses_estimated_goals_contribution: Option<bool>,
}Expand description
MonthlyCashFlowProfileRequest
JSON schema
{
"properties": {
"goals_contribution": {
"description": "The monthly dollar amount allocated for goals.",
"examples": [
150.01
],
"type": "number"
},
"uses_estimated_goals_contribution": {
"description": "Determines if the user uses estimated goals
contribution.",
"examples": [
false
],
"type": "boolean"
}
}
}Fields§
§goals_contribution: Option<f64>§uses_estimated_goals_contribution: Option<bool>Determines if the user uses estimated goals contribution.
Trait Implementations§
Source§impl Clone for MonthlyCashFlowProfileRequest
impl Clone for MonthlyCashFlowProfileRequest
Source§fn clone(&self) -> MonthlyCashFlowProfileRequest
fn clone(&self) -> MonthlyCashFlowProfileRequest
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 MonthlyCashFlowProfileRequest
impl<'de> Deserialize<'de> for MonthlyCashFlowProfileRequest
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<&MonthlyCashFlowProfileRequest> for MonthlyCashFlowProfileRequest
impl From<&MonthlyCashFlowProfileRequest> for MonthlyCashFlowProfileRequest
Source§fn from(value: &MonthlyCashFlowProfileRequest) -> Self
fn from(value: &MonthlyCashFlowProfileRequest) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MonthlyCashFlowProfileRequest
impl RefUnwindSafe for MonthlyCashFlowProfileRequest
impl Send for MonthlyCashFlowProfileRequest
impl Sync for MonthlyCashFlowProfileRequest
impl Unpin for MonthlyCashFlowProfileRequest
impl UnwindSafe for MonthlyCashFlowProfileRequest
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