pub struct BybitCoin {
pub coin: String,
pub wallet_balance: String,
pub available_to_withdraw: String,
pub equity: String,
pub usd_value: String,
}Expand description
Bybit wallet balance coin information
Fields§
§coin: StringCoin symbol
wallet_balance: StringTotal wallet balance for this coin
available_to_withdraw: StringAvailable balance for withdrawal
equity: StringEquity balance for this coin
usd_value: StringUSD value equivalent
Trait Implementations§
Source§impl<'de> Deserialize<'de> for BybitCoin
impl<'de> Deserialize<'de> for BybitCoin
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 BybitCoin
impl RefUnwindSafe for BybitCoin
impl Send for BybitCoin
impl Sync for BybitCoin
impl Unpin for BybitCoin
impl UnwindSafe for BybitCoin
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