[][src]Struct jqdata::GetBillboardList

pub struct GetBillboardList {
    pub code: String,
    pub date: String,
    pub end_date: String,
}

获取指定日期区间内的龙虎榜数据 参数: code: 股票代码 date: 开始日期 end_date: 结束日期 返回: code: 股票代码 day: 日期 direction: ALL 表示『汇总』,SELL 表示『卖』,BUY 表示『买』 abnormal_code: 异常波动类型 abnormal_name: 异常波动名称 sales_depart_name: 营业部名称 rank: 0 表示汇总, 1~5 表示买一到买五, 6~10 表示卖一到卖五 buy_value: 买入金额 buy_rate: 买入金额占比(买入金额/市场总成交额) sell_value: 卖出金额 sell_rate: 卖出金额占比(卖出金额/市场总成交额) net_value: 净额(买入金额 - 卖出金额) amount: 市场总成交额

Fields

code: Stringdate: Stringend_date: String

Trait Implementations

impl BodyConsumer<Vec<BillboardStock>> for GetBillboardList[src]

impl CsvListBodyConsumer for GetBillboardList[src]

type Output = BillboardStock

impl Debug for GetBillboardList[src]

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

impl HasMethod for GetBillboardList[src]

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