pub struct AccountBalance {
pub account_type: String,
pub account_im_rate: String,
pub account_mm_rate: String,
pub total_equity: String,
pub total_wallet_balance: String,
pub total_margin_balance: String,
pub total_available_balance: String,
pub total_perp_upl: String,
pub total_initial_margin: String,
pub total_maintenance_margin: String,
pub coin: Vec<CoinBalance>,
}Fields§
§account_type: String§account_im_rate: String§account_mm_rate: String§total_equity: String§total_wallet_balance: String§total_margin_balance: String§total_available_balance: String§total_perp_upl: String§total_initial_margin: String§total_maintenance_margin: String§coin: Vec<CoinBalance>Trait Implementations§
Source§impl Clone for AccountBalance
impl Clone for AccountBalance
Source§fn clone(&self) -> AccountBalance
fn clone(&self) -> AccountBalance
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 Debug for AccountBalance
impl Debug for AccountBalance
Source§impl<'de> Deserialize<'de> for AccountBalance
impl<'de> Deserialize<'de> for AccountBalance
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 AccountBalance
impl RefUnwindSafe for AccountBalance
impl Send for AccountBalance
impl Sync for AccountBalance
impl Unpin for AccountBalance
impl UnwindSafe for AccountBalance
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