pub struct BinanceSymbolInfo {
pub symbol: SmartString,
pub status: SmartString,
pub base_asset: SmartString,
pub quote_asset: SmartString,
}Expand description
Symbol information from Binance
Fields§
§symbol: SmartStringTrading symbol (e.g., “BTCUSDT”)
status: SmartStringTrading status (TRADING, HALT, BREAK, etc.)
base_asset: SmartStringBase asset symbol (e.g., “BTC”)
quote_asset: SmartStringQuote asset symbol (e.g., “USDT”)
Trait Implementations§
Source§impl Clone for BinanceSymbolInfo
impl Clone for BinanceSymbolInfo
Source§fn clone(&self) -> BinanceSymbolInfo
fn clone(&self) -> BinanceSymbolInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BinanceSymbolInfo
impl Debug for BinanceSymbolInfo
Source§impl<'de> Deserialize<'de> for BinanceSymbolInfo
impl<'de> Deserialize<'de> for BinanceSymbolInfo
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 BinanceSymbolInfo
impl RefUnwindSafe for BinanceSymbolInfo
impl Send for BinanceSymbolInfo
impl Sync for BinanceSymbolInfo
impl Unpin for BinanceSymbolInfo
impl UnwindSafe for BinanceSymbolInfo
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