#[non_exhaustive]pub struct BalData {
pub ccy: String,
pub cash_bal: NumberString,
pub u_time: NumberString,
pub extra: ExtraFields,
}Expand description
A currency-balance record from the balData array.
OKX docs: https://www.okx.com/docs-v5/en/#trading-account-websocket-balance-and-position-channel
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.ccy: StringCurrency code, for example BTC or USDT.
cash_bal: NumberStringCash balance of the currency.
OKX returns numeric values as JSON strings.
u_time: NumberStringTime when this currency balance was last updated.
Unix timestamp in milliseconds, for example 1597026383085.
extra: ExtraFieldsAdditional fields added by OKX that are not yet represented explicitly.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for BalData
impl<'de> Deserialize<'de> for BalData
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 BalData
impl RefUnwindSafe for BalData
impl Send for BalData
impl Sync for BalData
impl Unpin for BalData
impl UnsafeUnpin for BalData
impl UnwindSafe for BalData
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