Struct coinbase_api::AggregatedBook[][src]

pub struct AggregatedBook {
    pub sequence: u64,
    pub bids: Vec<(Decimal, Decimal, u64)>,
    pub asks: Vec<(Decimal, Decimal, u64)>,
}

Aggregated book of orders.

Fields

List of (price, size, num-orders).

Trait Implementations

impl BookLevel<AggregatedBook> for Best
[src]

impl BookLevel<AggregatedBook> for Top50
[src]

impl Debug for AggregatedBook
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations