pub struct MarketInfo {
pub pair: CurrencyPair,
pub status: MarketStatus,
pub filters: Vec<MarketFilter>,
pub order_types: Vec<OrderType>,
}
Expand description
Market information.
Fields§
§pair: CurrencyPair
Market currency pair.
status: MarketStatus
Market trading status.
filters: Vec<MarketFilter>
Market order filters.
order_types: Vec<OrderType>
Market order types.
Trait Implementations§
Source§impl Debug for MarketInfo
impl Debug for MarketInfo
Auto Trait Implementations§
impl Freeze for MarketInfo
impl RefUnwindSafe for MarketInfo
impl Send for MarketInfo
impl Sync for MarketInfo
impl Unpin for MarketInfo
impl UnwindSafe for MarketInfo
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