pub struct CashReport {Show 28 fields
pub account_id: String,
pub currency: Currency,
pub start_timestamp_ms: i64,
pub end_timestamp_ms: i64,
pub starting_cash: f64,
pub ending_cash: f64,
pub ending_settled_cash: f64,
pub net_trades: Option<f64>,
pub net_trade_purchases: Option<f64>,
pub net_trade_sales: Option<f64>,
pub commissions: f64,
pub commissions_mtd: f64,
pub commissions_ytd: f64,
pub other_fees: f64,
pub other_fees_mtd: f64,
pub other_fees_ytd: f64,
pub dividends: f64,
pub dividends_mtd: f64,
pub dividends_ytd: f64,
pub interest: f64,
pub interest_mtd: f64,
pub interest_ytd: f64,
pub deposits: f64,
pub deposits_mtd: f64,
pub deposits_ytd: f64,
pub withdrawals: f64,
pub withdrawals_mtd: f64,
pub withdrawals_ytd: f64,
}Fields§
§account_id: String§currency: Currency§start_timestamp_ms: i64§end_timestamp_ms: i64§starting_cash: f64§ending_cash: f64§ending_settled_cash: f64§net_trades: Option<f64>§net_trade_purchases: Option<f64>§net_trade_sales: Option<f64>§commissions: f64§commissions_mtd: f64§commissions_ytd: f64§other_fees: f64§other_fees_mtd: f64§other_fees_ytd: f64§dividends: f64§dividends_mtd: f64§dividends_ytd: f64§interest: f64§interest_mtd: f64§interest_ytd: f64§deposits: f64§deposits_mtd: f64§deposits_ytd: f64§withdrawals: f64§withdrawals_mtd: f64§withdrawals_ytd: f64Trait Implementations§
Source§impl Debug for CashReport
impl Debug for CashReport
Source§impl PartialEq for CashReport
impl PartialEq for CashReport
Source§impl StatementSection for CashReport
impl StatementSection for CashReport
fn from_node(node: &NodeWrapper<'_>) -> Result<CashReport>
impl StructuralPartialEq for CashReport
Auto Trait Implementations§
impl Freeze for CashReport
impl RefUnwindSafe for CashReport
impl Send for CashReport
impl Sync for CashReport
impl Unpin for CashReport
impl UnwindSafe for CashReport
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