pub struct ModelPositionResponse {
pub cash: Option<Vec<ModelPositionResponseCash>>,
pub mismatched: Option<bool>,
pub model: Option<String>,
pub nlv: Option<f64>,
pub position_list: Option<Vec<ModelPositionResponsePositionList>>,
pub position_ts: Option<i64>,
pub req_id: Option<i32>,
pub stk_only: Option<bool>,
pub subscription_status: Option<i32>,
pub total_dlv: Option<f64>,
pub total_mv: Option<f64>,
}Fields§
§cash: Option<Vec<ModelPositionResponseCash>>An object representing each currency held in the model.
mismatched: Option<bool>Notes if the Actual allocation has become misalligned with the Target.
model: Option<String>Name of the model.
nlv: Option<f64>Market value of the model.
position_list: Option<Vec<ModelPositionResponsePositionList>>List of object containing each equity in the model.
position_ts: Option<i64>Epoch timestamp when the position was retrieved.
req_id: Option<i32>Request identifier to uniquely track a request.
stk_only: Option<bool>Describes if the model contains only stocks.
subscription_status: Option<i32>Describes if the model is in polling mode.
total_dlv: Option<f64>Diplayed total liquidation value of the model.
total_mv: Option<f64>Market value of the entire position.
Trait Implementations§
Source§impl Clone for ModelPositionResponse
impl Clone for ModelPositionResponse
Source§fn clone(&self) -> ModelPositionResponse
fn clone(&self) -> ModelPositionResponse
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 ModelPositionResponse
impl Debug for ModelPositionResponse
Source§impl Default for ModelPositionResponse
impl Default for ModelPositionResponse
Source§impl<'de> Deserialize<'de> for ModelPositionResponse
impl<'de> Deserialize<'de> for ModelPositionResponse
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 PartialEq for ModelPositionResponse
impl PartialEq for ModelPositionResponse
impl StructuralPartialEq for ModelPositionResponse
Auto Trait Implementations§
impl Freeze for ModelPositionResponse
impl RefUnwindSafe for ModelPositionResponse
impl Send for ModelPositionResponse
impl Sync for ModelPositionResponse
impl Unpin for ModelPositionResponse
impl UnsafeUnpin for ModelPositionResponse
impl UnwindSafe for ModelPositionResponse
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