Struct binance::model::Kline[][src]

pub struct Kline {
    pub start_time: i64,
    pub end_time: i64,
    pub symbol: String,
    pub interval: String,
    pub first_trade_id: i32,
    pub last_trade_id: i32,
    pub open: String,
    pub close: String,
    pub high: String,
    pub low: String,
    pub volume: String,
    pub number_of_trades: i32,
    pub is_final_bar: bool,
    pub quote_volume: String,
    pub active_buy_volume: String,
    pub active_volume_buy_quote: String,
    pub ignore_me: String,
}

Fields

Trait Implementations

impl Debug for Kline
[src]

Formats the value using the given formatter. Read more

impl Clone for Kline
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Kline

impl Sync for Kline