[][src]Struct jqdata::GetExtras

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

获取基金净值/期货结算价等 参数: code: 证券代码 date: 开始日期 end_date: 结束日期 返回: date: 日期 is_st: 是否是ST,是则返回 1,否则返回 0。股票使用 acc_net_value: 基金累计净值。基金使用 unit_net_value: 基金单位净值。基金使用 futures_sett_price: 期货结算价。期货使用 futures_positions: 期货持仓量。期货使用 adj_net_value: 场外基金的复权净值。场外基金使用

Fields

code: Stringdate: Stringend_date: String

Trait Implementations

impl BodyConsumer<Vec<Extra>> for GetExtras[src]

impl CsvListBodyConsumer for GetExtras[src]

type Output = Extra

impl Debug for GetExtras[src]

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

impl HasMethod for GetExtras[src]

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