Struct cryptocompare::Dataset [] [src]

pub struct Dataset {
    pub close: f64,
    pub high: f64,
    pub low: f64,
    pub open: f64,
    pub time: i64,
    pub volumefrom: f64,
    pub volumeto: f64,
}

An object with trading info.

Fields

Market price when timeslot closed.

Highest market price in timeslot.

LOwest market price in timeslot.

Market price when time slot opened.

Time in seconds after 1.1.1970.

Start volume.

End volume.

Trait Implementations

impl Debug for Dataset
[src]

[src]

Formats the value using the given formatter. Read more