Struct coinbase_api::Trade[][src]

pub struct Trade {
    pub time: DateTime<Utc>,
    pub trade_id: u64,
    pub price: Decimal,
    pub size: Decimal,
    pub side: Side,
}

Description of a trade.

Fields

Maker order side (buy indicates a down-tick and sell an up-tick).

Trait Implementations

impl Debug for Trade
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Trade

impl Sync for Trade