Struct coinbase_api::Ticker[][src]

pub struct Ticker {
    pub trade_id: u64,
    pub price: Decimal,
    pub size: Decimal,
    pub bid: Decimal,
    pub ask: Decimal,
    pub volume: Decimal,
    pub time: DateTime<Utc>,
}

Information about the last trade (tick), best bid/ask and 24h volume.

Fields

Trait Implementations

impl Debug for Ticker
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Ticker

impl Sync for Ticker