[][src]Struct qifi_rs::data::Tick

pub struct Tick {
    pub price: f64,
    pub open_interest: i128,
    pub high: f64,
    pub low: f64,
    pub close: f64,
    pub open: f64,
    pub volume: i64,
    pub amount: f64,
}

Tick格式的数据 price: 最新价 open_interest: 持仓量 high: 高 low: 低 close: 收 open: 开 volume: 成交量 amount: 成交金额 Examples

Fields

price: f64open_interest: i128high: f64low: f64close: f64open: f64volume: i64amount: f64

Trait Implementations

impl Clone for Tick[src]

impl Debug for Tick[src]

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

impl Serialize for Tick[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, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

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