pub struct ExchangeInfo {
pub exchange: Exchange,
pub limits: Vec<RateLimit>,
pub markets: Vec<MarketInfo>,
}
Expand description
Exchange information.
Fields§
§exchange: Exchange
Exchange identifier.
limits: Vec<RateLimit>
Exchange rate limits.
markets: Vec<MarketInfo>
Exchange markets.
Trait Implementations§
Source§impl Debug for ExchangeInfo
impl Debug for ExchangeInfo
Auto Trait Implementations§
impl Freeze for ExchangeInfo
impl RefUnwindSafe for ExchangeInfo
impl Send for ExchangeInfo
impl Sync for ExchangeInfo
impl Unpin for ExchangeInfo
impl UnwindSafe for ExchangeInfo
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