Struct binance_async::model::DepthOrderBookEvent[][src]

pub struct DepthOrderBookEvent {
    pub event_type: String,
    pub event_time: u64,
    pub symbol: String,
    pub first_update_id: u64,
    pub final_update_id: u64,
    pub bids: Vec<Bids>,
    pub asks: Vec<Asks>,
}

Fields

Trait Implementations

impl Debug for DepthOrderBookEvent
[src]

Formats the value using the given formatter. Read more

impl Clone for DepthOrderBookEvent
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations