pub struct Position {Show 16 fields
pub asset_id: Uuid,
pub symbol: String,
pub exchange: String,
pub asset_class: AssetClass,
pub avg_entry_price: String,
pub qty: String,
pub side: PositionSide,
pub market_value: String,
pub cost_basis: String,
pub unrealized_pl: String,
pub unrealized_plpc: String,
pub unrealized_intraday_pl: String,
pub unrealized_intraday_plpc: String,
pub current_price: String,
pub lastday_price: String,
pub change_today: String,
}Expand description
Position information
Fields§
§asset_id: Uuid§symbol: String§exchange: String§asset_class: AssetClass§avg_entry_price: String§qty: String§side: PositionSide§market_value: String§cost_basis: String§unrealized_pl: String§unrealized_plpc: String§unrealized_intraday_pl: String§unrealized_intraday_plpc: String§current_price: String§lastday_price: String§change_today: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for Position
impl<'de> Deserialize<'de> for Position
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<Position, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<Position, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for Position
impl Serialize for Position
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for Position
impl RefUnwindSafe for Position
impl Send for Position
impl Sync for Position
impl Unpin for Position
impl UnwindSafe for Position
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