[][src]Struct ib::models::HistoryData

pub struct HistoryData { /* fields omitted */ }

Methods

impl HistoryData
[src]

pub fn new() -> HistoryData
[src]

pub fn set_start(&mut self, start: String)
[src]

pub fn with_start(self, start: String) -> HistoryData
[src]

pub fn start(&self) -> Option<&String>
[src]

pub fn reset_start(&mut self)
[src]

pub fn set_md_availability(&mut self, md_availability: String)
[src]

pub fn with_md_availability(self, md_availability: String) -> HistoryData
[src]

pub fn md_availability(&self) -> Option<&String>
[src]

pub fn reset_md_availability(&mut self)
[src]

pub fn set_bar_length(&mut self, bar_length: i32)
[src]

pub fn with_bar_length(self, bar_length: i32) -> HistoryData
[src]

pub fn bar_length(&self) -> Option<&i32>
[src]

pub fn reset_bar_length(&mut self)
[src]

pub fn set_delay(&mut self, delay: i32)
[src]

pub fn with_delay(self, delay: i32) -> HistoryData
[src]

pub fn delay(&self) -> Option<&i32>
[src]

pub fn reset_delay(&mut self)
[src]

pub fn set_high(&mut self, high: String)
[src]

pub fn with_high(self, high: String) -> HistoryData
[src]

pub fn high(&self) -> Option<&String>
[src]

pub fn reset_high(&mut self)
[src]

pub fn set_low(&mut self, low: String)
[src]

pub fn with_low(self, low: String) -> HistoryData
[src]

pub fn low(&self) -> Option<&String>
[src]

pub fn reset_low(&mut self)
[src]

pub fn set_symbol(&mut self, symbol: String)
[src]

pub fn with_symbol(self, symbol: String) -> HistoryData
[src]

pub fn symbol(&self) -> Option<&String>
[src]

pub fn reset_symbol(&mut self)
[src]

pub fn set_text(&mut self, text: String)
[src]

pub fn with_text(self, text: String) -> HistoryData
[src]

pub fn text(&self) -> Option<&String>
[src]

pub fn reset_text(&mut self)
[src]

pub fn set_tick_num(&mut self, tick_num: String)
[src]

pub fn with_tick_num(self, tick_num: String) -> HistoryData
[src]

pub fn tick_num(&self) -> Option<&String>
[src]

pub fn reset_tick_num(&mut self)
[src]

pub fn set_time_period(&mut self, time_period: String)
[src]

pub fn with_time_period(self, time_period: String) -> HistoryData
[src]

pub fn time_period(&self) -> Option<&String>
[src]

pub fn reset_time_period(&mut self)
[src]

pub fn set_data(&mut self, data: Vec<HistorydataData>)
[src]

pub fn with_data(self, data: Vec<HistorydataData>) -> HistoryData
[src]

pub fn data(&self) -> Option<&Vec<HistorydataData>>
[src]

pub fn reset_data(&mut self)
[src]

pub fn set_points(&mut self, points: f32)
[src]

pub fn with_points(self, points: f32) -> HistoryData
[src]

pub fn points(&self) -> Option<&f32>
[src]

pub fn reset_points(&mut self)
[src]

pub fn set_travel_time(&mut self, travel_time: f32)
[src]

pub fn with_travel_time(self, travel_time: f32) -> HistoryData
[src]

pub fn travel_time(&self) -> Option<&f32>
[src]

pub fn reset_travel_time(&mut self)
[src]

Trait Implementations

impl Debug for HistoryData
[src]

impl Serialize for HistoryData
[src]

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

Auto Trait Implementations

impl Send for HistoryData

impl Sync for HistoryData

Blanket Implementations

impl<T> From for T
[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T

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