pub struct AccountSummaryResponseCashBalance {
pub balance: Option<f64>,
pub currency: Option<String>,
pub settled_cash: Option<f64>,
}Fields§
§balance: Option<f64>The total available currency held in the account.
currency: Option<String>The currency the values represent. Base currency represented as “Total (in {BaseCurrency})”
settled_cash: Option<f64>The available settled cash that can be withdrawn from the account.
Trait Implementations§
Source§impl Clone for AccountSummaryResponseCashBalance
impl Clone for AccountSummaryResponseCashBalance
Source§fn clone(&self) -> AccountSummaryResponseCashBalance
fn clone(&self) -> AccountSummaryResponseCashBalance
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for AccountSummaryResponseCashBalance
impl<'de> Deserialize<'de> for AccountSummaryResponseCashBalance
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
Source§impl PartialEq for AccountSummaryResponseCashBalance
impl PartialEq for AccountSummaryResponseCashBalance
Source§fn eq(&self, other: &AccountSummaryResponseCashBalance) -> bool
fn eq(&self, other: &AccountSummaryResponseCashBalance) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AccountSummaryResponseCashBalance
Auto Trait Implementations§
impl Freeze for AccountSummaryResponseCashBalance
impl RefUnwindSafe for AccountSummaryResponseCashBalance
impl Send for AccountSummaryResponseCashBalance
impl Sync for AccountSummaryResponseCashBalance
impl Unpin for AccountSummaryResponseCashBalance
impl UnsafeUnpin for AccountSummaryResponseCashBalance
impl UnwindSafe for AccountSummaryResponseCashBalance
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