pub struct BinanceExchangeInfoResponse {
pub timezone: String,
pub server_time: u64,
pub rate_limits: Vec<BinanceRateLimit>,
pub exchange_filters: Vec<OwnedValue>,
pub symbols: Vec<BinanceSymbolInfo>,
}Expand description
Binance exchange info response
Fields§
§timezone: StringExchange timezone
server_time: u64Server time
rate_limits: Vec<BinanceRateLimit>Rate limits
exchange_filters: Vec<OwnedValue>Exchange filters
symbols: Vec<BinanceSymbolInfo>Symbol info
Trait Implementations§
Source§impl Clone for BinanceExchangeInfoResponse
impl Clone for BinanceExchangeInfoResponse
Source§fn clone(&self) -> BinanceExchangeInfoResponse
fn clone(&self) -> BinanceExchangeInfoResponse
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 BinanceExchangeInfoResponse
impl Debug for BinanceExchangeInfoResponse
Source§impl<'de> Deserialize<'de> for BinanceExchangeInfoResponse
impl<'de> Deserialize<'de> for BinanceExchangeInfoResponse
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 BinanceExchangeInfoResponse
impl RefUnwindSafe for BinanceExchangeInfoResponse
impl Send for BinanceExchangeInfoResponse
impl Sync for BinanceExchangeInfoResponse
impl Unpin for BinanceExchangeInfoResponse
impl UnwindSafe for BinanceExchangeInfoResponse
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