[][src]Struct jqdata_blocking::model::Price

pub struct Price {
    pub date: String,
    pub open: f64,
    pub close: f64,
    pub high: f64,
    pub low: f64,
    pub volume: f64,
    pub money: f64,
    pub paused: Option<u8>,
    pub high_limit: Option<f64>,
    pub low_limit: Option<f64>,
    pub avg: Option<f64>,
    pub pre_close: Option<f64>,
    pub open_interest: Option<f64>,
}

Fields

date: Stringopen: f64close: f64high: f64low: f64volume: f64money: f64paused: Option<u8>high_limit: Option<f64>low_limit: Option<f64>avg: Option<f64>pre_close: Option<f64>open_interest: Option<f64>

Trait Implementations

impl Debug for Price[src]

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

impl Serialize for Price[src]

Auto Trait Implementations

impl RefUnwindSafe for Price

impl Send for Price

impl Sync for Price

impl Unpin for Price

impl UnwindSafe for Price

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: Deserialize<'de>, 
[src]

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

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

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,