[][src]Struct jqdata::GetMtss

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

获取一只股票在一个时间段内的融资融券信息 参数: code: 股票代码 date: 开始日期 end_date: 结束日期 返回: date: 日期 sec_code: 股票代码 fin_value: 融资余额(元) fin_buy_value: 融资买入额(元) fin_refund_value: 融资偿还额(元) sec_value: 融券余量(股) sec_sell_value: 融券卖出量(股) sec_refund_value: 融券偿还量(股) fin_sec_value: 融资融券余额(元)

Fields

code: Stringdate: Stringend_date: String

Trait Implementations

impl BodyConsumer<Vec<Mtss>> for GetMtss[src]

impl CsvListBodyConsumer for GetMtss[src]

type Output = Mtss

impl Debug for GetMtss[src]

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

impl HasMethod for GetMtss[src]

impl Serialize for GetMtss[src]

Auto Trait Implementations

impl RefUnwindSafe for GetMtss

impl Send for GetMtss

impl Sync for GetMtss

impl Unpin for GetMtss

impl UnwindSafe for GetMtss

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>,