[][src]Struct jqdata::GetFactorValues

pub struct GetFactorValues {
    pub code: String,
    pub columns: String,
    pub date: String,
    pub end_date: String,
}

获取因子值的 API,点击查看因子列表 参数: code: 单只股票代码 columns: 因子名称,因子名称,多个因子用逗号分隔 date: 开始日期 end_date: 结束日期 返回: date:日期 查询因子值 注: 为保证数据的连续性,所有数据基于后复权计算 为了防止单次返回数据时间过长,尽量较少查询的因子数和时间段 如果第一次请求超时,尝试重试

Fields

code: Stringcolumns: Stringdate: Stringend_date: String

Trait Implementations

impl BodyConsumer<Vec<FactorValue>> for GetFactorValues[src]

impl CsvListBodyConsumer for GetFactorValues[src]

type Output = FactorValue

impl Debug for GetFactorValues[src]

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

impl HasMethod for GetFactorValues[src]

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