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