[][src]Struct jqdata_blocking::model::GetCurrentTicks

pub struct GetCurrentTicks {
    pub code: String,
}

获取多标的最新的 tick 数据 参数: code: 标的代码, 多个标的使用,分隔。每次请求的标的必须是相同类型。标的类型包括: 股票、指数、场内基金、期货、期权

Fields

code: String

Trait Implementations

impl Debug for GetCurrentTicks[src]

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

impl Request for GetCurrentTicks[src]

impl Response for GetCurrentTicks[src]

type Output = Vec<Tick>

impl Serialize for GetCurrentTicks[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: 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>,