pub struct InvestDivestRequestBodyAccountList {
pub account: Option<String>,
pub amt_to_invest: Option<f64>,
}Fields§
§account: Option<String>Account identifier to invest.
amt_to_invest: Option<f64>Amount of cash to invest in the model from the account.
Trait Implementations§
Source§impl Clone for InvestDivestRequestBodyAccountList
impl Clone for InvestDivestRequestBodyAccountList
Source§fn clone(&self) -> InvestDivestRequestBodyAccountList
fn clone(&self) -> InvestDivestRequestBodyAccountList
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 PartialEq for InvestDivestRequestBodyAccountList
impl PartialEq for InvestDivestRequestBodyAccountList
Source§fn eq(&self, other: &InvestDivestRequestBodyAccountList) -> bool
fn eq(&self, other: &InvestDivestRequestBodyAccountList) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for InvestDivestRequestBodyAccountList
Auto Trait Implementations§
impl Freeze for InvestDivestRequestBodyAccountList
impl RefUnwindSafe for InvestDivestRequestBodyAccountList
impl Send for InvestDivestRequestBodyAccountList
impl Sync for InvestDivestRequestBodyAccountList
impl Unpin for InvestDivestRequestBodyAccountList
impl UnsafeUnpin for InvestDivestRequestBodyAccountList
impl UnwindSafe for InvestDivestRequestBodyAccountList
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