pub struct BinanceExchangeInfo {
pub timezone: SmartString,
pub server_time: u64,
pub symbols: Vec<BinanceSymbolInfo>,
pub sors: Option<Vec<BinanceSorConfig>>,
}Expand description
Exchange information from Binance
Fields§
§timezone: SmartStringExchange timezone
server_time: u64Current server time in milliseconds
symbols: Vec<BinanceSymbolInfo>List of trading symbols and their information
sors: Option<Vec<BinanceSorConfig>>SOR (Smart Order Routing) configurations if available
Trait Implementations§
Source§impl Clone for BinanceExchangeInfo
impl Clone for BinanceExchangeInfo
Source§fn clone(&self) -> BinanceExchangeInfo
fn clone(&self) -> BinanceExchangeInfo
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 BinanceExchangeInfo
impl Debug for BinanceExchangeInfo
Source§impl<'de> Deserialize<'de> for BinanceExchangeInfo
impl<'de> Deserialize<'de> for BinanceExchangeInfo
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 BinanceExchangeInfo
impl RefUnwindSafe for BinanceExchangeInfo
impl Send for BinanceExchangeInfo
impl Sync for BinanceExchangeInfo
impl Unpin for BinanceExchangeInfo
impl UnwindSafe for BinanceExchangeInfo
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