[][src]Struct cxmr_broker::MarketBroker

pub struct MarketBroker {
    pub info: MarketInfo,
    pub exchange: Exchange,
    pub market_id: Market,
    pub orderbook: OrderBook,
}

Currency pair market structure.

Fields

info: MarketInfoexchange: Exchangemarket_id: Marketorderbook: OrderBook

Methods

impl MarketBroker[src]

pub fn new(exchange: Exchange, info: MarketInfo) -> Self[src]

pub fn market_id(&self) -> &Market[src]

Returns market id structure.

pub fn pair(&self) -> &CurrencyPair[src]

Currency pair trading on market.

pub fn is_trading(&self) -> bool[src]

Returns true if market status is trading.

pub fn exchange(&self) -> &Exchange[src]

Exchange identifier of market.

pub fn asks(&self) -> &OrderBookSide<u64>[src]

Asks side of the order book.

pub fn bids(&self) -> &OrderBookSide<ReverseRate>[src]

Bids side of the order book.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.