pub struct BybitWalletBalance {
pub account_type: String,
pub total_equity: String,
pub total_wallet_balance: String,
pub total_available_balance: String,
pub coin: Vec<BybitCoin>,
}Expand description
Bybit wallet balance response
Fields§
§account_type: StringAccount type identifier
total_equity: StringTotal equity across all coins
total_wallet_balance: StringTotal wallet balance across all coins
total_available_balance: StringTotal available balance for trading
coin: Vec<BybitCoin>List of coin balances in the wallet
Trait Implementations§
Source§impl Debug for BybitWalletBalance
impl Debug for BybitWalletBalance
Source§impl<'de> Deserialize<'de> for BybitWalletBalance
impl<'de> Deserialize<'de> for BybitWalletBalance
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 BybitWalletBalance
impl RefUnwindSafe for BybitWalletBalance
impl Send for BybitWalletBalance
impl Sync for BybitWalletBalance
impl Unpin for BybitWalletBalance
impl UnwindSafe for BybitWalletBalance
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