pub struct BuyingPower {
pub cash_available_for_trading: f64,
pub cash_balance: f64,
pub option_buying_power: Option<f64>,
pub liquidation_value: Option<f64>,
}Fields§
§cash_available_for_trading: f64§cash_balance: f64§option_buying_power: Option<f64>§liquidation_value: Option<f64>Trait Implementations§
Source§impl Clone for BuyingPower
impl Clone for BuyingPower
Source§fn clone(&self) -> BuyingPower
fn clone(&self) -> BuyingPower
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 BuyingPower
impl Debug for BuyingPower
Source§impl<'de> Deserialize<'de> for BuyingPower
impl<'de> Deserialize<'de> for BuyingPower
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 BuyingPower
impl RefUnwindSafe for BuyingPower
impl Send for BuyingPower
impl Sync for BuyingPower
impl Unpin for BuyingPower
impl UnsafeUnpin for BuyingPower
impl UnwindSafe for BuyingPower
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