pub struct Position {Show 17 fields
pub asset_id: String,
pub symbol: String,
pub exchange: String,
pub asset_class: String,
pub avg_entry_price: String,
pub qty: String,
pub qty_available: String,
pub side: String,
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,
}Fields§
§asset_id: String§symbol: String§exchange: String§asset_class: String§avg_entry_price: String§qty: String§qty_available: String§side: String§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<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
Auto Trait Implementations§
impl Freeze for Position
impl RefUnwindSafe for Position
impl Send for Position
impl Sync for Position
impl Unpin for Position
impl UnsafeUnpin 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