pub struct CoinData {Show 18 fields
pub coin: String,
pub equity: String,
pub usd_value: String,
pub wallet_balance: String,
pub available_to_withdraw: String,
pub available_to_borrow: String,
pub borrow_amount: String,
pub accrued_interest: String,
pub total_order_im: String,
pub total_position_im: String,
pub total_position_mm: String,
pub unrealised_pnl: String,
pub cum_realised_pnl: String,
pub bonus: String,
pub collateral_switch: bool,
pub margin_collateral: bool,
pub locked: String,
pub spot_hedging_qty: String,
}Fields§
§coin: String§equity: String§usd_value: String§wallet_balance: String§available_to_withdraw: String§available_to_borrow: String§borrow_amount: String§accrued_interest: String§total_order_im: String§total_position_im: String§total_position_mm: String§unrealised_pnl: String§cum_realised_pnl: String§bonus: String§collateral_switch: bool§margin_collateral: bool§locked: String§spot_hedging_qty: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for CoinData
impl<'de> Deserialize<'de> for CoinData
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
impl Send for CoinData
impl Sync for CoinData
Auto Trait Implementations§
impl Freeze for CoinData
impl RefUnwindSafe for CoinData
impl Unpin for CoinData
impl UnwindSafe for CoinData
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