Struct michromer::data::OrderbookResponse [] [src]

pub struct OrderbookResponse {
    pub ok: bool,
    pub venue: String,
    pub symbol: String,
    pub bids: Option<Vec<BidAsk>>,
    pub asks: Option<Vec<BidAsk>>,
    pub ts: String,
}

Fields

ok: bool venue: String symbol: String bids: Option<Vec<BidAsk>> asks: Option<Vec<BidAsk>> ts: String

Trait Implementations

impl Clone for OrderbookResponse
[src]

fn clone(&self) -> OrderbookResponse

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Debug for OrderbookResponse
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.