pub struct ExchangeInformation {
pub timezone: String,
pub server_time: u64,
pub rate_limits: Vec<RateLimit>,
pub symbols: Vec<Symbol>,
}
Fields§
§timezone: String
§server_time: u64
§rate_limits: Vec<RateLimit>
§symbols: Vec<Symbol>
Trait Implementations§
Source§impl Clone for ExchangeInformation
impl Clone for ExchangeInformation
Source§fn clone(&self) -> ExchangeInformation
fn clone(&self) -> ExchangeInformation
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 ExchangeInformation
impl Debug for ExchangeInformation
Source§impl<'de> Deserialize<'de> for ExchangeInformation
impl<'de> Deserialize<'de> for ExchangeInformation
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 ExchangeInformation
impl RefUnwindSafe for ExchangeInformation
impl Send for ExchangeInformation
impl Sync for ExchangeInformation
impl Unpin for ExchangeInformation
impl UnwindSafe for ExchangeInformation
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