pub struct ProjectedBalances {
pub available_funds: Option<f64>,
pub available_funds_non_marginable_trade: Option<f64>,
pub buying_power: Option<f64>,
pub cash_available_for_trading: Option<f64>,
pub cash_available_for_withdrawal: Option<f64>,
pub day_trading_buying_power: Option<f64>,
pub day_trading_buying_power_call: Option<f64>,
pub is_in_call: Option<bool>,
pub maintenance_call: Option<f64>,
pub reg_t_call: Option<f64>,
pub stock_buying_power: Option<f64>,
}Expand description
Projected Balances item in SecuritiesAccount
Fields§
§available_funds: Option<f64>§available_funds_non_marginable_trade: Option<f64>§buying_power: Option<f64>§cash_available_for_trading: Option<f64>§cash_available_for_withdrawal: Option<f64>§day_trading_buying_power: Option<f64>§day_trading_buying_power_call: Option<f64>§is_in_call: Option<bool>§maintenance_call: Option<f64>§reg_t_call: Option<f64>§stock_buying_power: Option<f64>Trait Implementations§
Source§impl Clone for ProjectedBalances
impl Clone for ProjectedBalances
Source§fn clone(&self) -> ProjectedBalances
fn clone(&self) -> ProjectedBalances
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ProjectedBalances
impl Debug for ProjectedBalances
Source§impl<'de> Deserialize<'de> for ProjectedBalances
impl<'de> Deserialize<'de> for ProjectedBalances
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 ProjectedBalances
impl RefUnwindSafe for ProjectedBalances
impl Send for ProjectedBalances
impl Sync for ProjectedBalances
impl Unpin for ProjectedBalances
impl UnsafeUnpin for ProjectedBalances
impl UnwindSafe for ProjectedBalances
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