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