Struct ib_client::models::history_result_bars::HistoryResultBars[][src]

pub struct HistoryResultBars {
    pub open: Option<f32>,
    pub high: Option<f32>,
    pub low: Option<f32>,
    pub close: Option<f32>,
    pub volume: Option<f32>,
    pub time: Option<String>,
    pub end_time: Option<String>,
    pub weighted_avg: Option<f32>,
    pub count: Option<f32>,
}

Fields

open: Option<f32>high: Option<f32>low: Option<f32>close: Option<f32>volume: Option<f32>time: Option<String>end_time: Option<String>weighted_avg: Option<f32>count: Option<f32>

Implementations

impl HistoryResultBars[src]

Trait Implementations

impl Clone for HistoryResultBars[src]

impl Debug for HistoryResultBars[src]

impl<'de> Deserialize<'de> for HistoryResultBars[src]

impl PartialEq<HistoryResultBars> for HistoryResultBars[src]

impl Serialize for HistoryResultBars[src]

impl StructuralPartialEq for HistoryResultBars[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.