pub struct InvestDivestRequestBody {
pub account_list: Option<Vec<InvestDivestRequestBodyAccountList>>,
pub model: Option<String>,
pub req_id: Option<i32>,
}Fields§
§account_list: Option<Vec<InvestDivestRequestBodyAccountList>>Collection of accounts to invest in a model.
model: Option<String>Define the model to invest accounts into.
req_id: Option<i32>Request identifier to uniquely track a request.
Trait Implementations§
Source§impl Clone for InvestDivestRequestBody
impl Clone for InvestDivestRequestBody
Source§fn clone(&self) -> InvestDivestRequestBody
fn clone(&self) -> InvestDivestRequestBody
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 InvestDivestRequestBody
impl Debug for InvestDivestRequestBody
Source§impl Default for InvestDivestRequestBody
impl Default for InvestDivestRequestBody
Source§impl PartialEq for InvestDivestRequestBody
impl PartialEq for InvestDivestRequestBody
Source§impl Serialize for InvestDivestRequestBody
impl Serialize for InvestDivestRequestBody
impl StructuralPartialEq for InvestDivestRequestBody
Auto Trait Implementations§
impl Freeze for InvestDivestRequestBody
impl RefUnwindSafe for InvestDivestRequestBody
impl Send for InvestDivestRequestBody
impl Sync for InvestDivestRequestBody
impl Unpin for InvestDivestRequestBody
impl UnsafeUnpin for InvestDivestRequestBody
impl UnwindSafe for InvestDivestRequestBody
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