pub struct FIFOPerformanceSummary {Show 15 fields
pub account_id: String,
pub timestamp_eod_ms: i64,
pub ticker: Option<String>,
pub conid: Option<u32>,
pub listing_exchange: Option<String>,
pub realized_st_profit: f64,
pub realized_st_loss: f64,
pub unrealized_st_profit: f64,
pub unrealized_st_loss: f64,
pub realized_lt_profit: f64,
pub realized_lt_loss: f64,
pub unrealized_lt_profit: f64,
pub unrealized_lt_loss: f64,
pub total_realized_pnl: f64,
pub total_fifo_pnl: f64,
}Fields§
§account_id: String§timestamp_eod_ms: i64§ticker: Option<String>§conid: Option<u32>§listing_exchange: Option<String>§realized_st_profit: f64§realized_st_loss: f64§unrealized_st_profit: f64§unrealized_st_loss: f64§realized_lt_profit: f64§realized_lt_loss: f64§unrealized_lt_profit: f64§unrealized_lt_loss: f64§total_realized_pnl: f64§total_fifo_pnl: f64Trait Implementations§
Source§impl Debug for FIFOPerformanceSummary
impl Debug for FIFOPerformanceSummary
Source§impl PartialEq for FIFOPerformanceSummary
impl PartialEq for FIFOPerformanceSummary
Source§fn eq(&self, other: &FIFOPerformanceSummary) -> bool
fn eq(&self, other: &FIFOPerformanceSummary) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl StatementSection for FIFOPerformanceSummary
impl StatementSection for FIFOPerformanceSummary
fn from_node(node: &NodeWrapper<'_>) -> Result<FIFOPerformanceSummary>
impl StructuralPartialEq for FIFOPerformanceSummary
Auto Trait Implementations§
impl Freeze for FIFOPerformanceSummary
impl RefUnwindSafe for FIFOPerformanceSummary
impl Send for FIFOPerformanceSummary
impl Sync for FIFOPerformanceSummary
impl Unpin for FIFOPerformanceSummary
impl UnsafeUnpin for FIFOPerformanceSummary
impl UnwindSafe for FIFOPerformanceSummary
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