[][src]Struct qifi_rs::account::QIFI

pub struct QIFI {
    pub databaseip: String,
    pub account_cookie: String,
    pub password: String,
    pub portfolio: String,
    pub broker_name: String,
    pub capital_password: String,
    pub bank_password: String,
    pub bankid: String,
    pub investor_name: String,
    pub money: f64,
    pub pub_host: String,
    pub settlement: HashMap<String, String>,
    pub taskid: String,
    pub trade_host: String,
    pub updatetime: String,
    pub wsuri: String,
    pub bankname: String,
    pub trading_day: String,
    pub status: i16,
    pub accounts: Account,
    pub banks: HashMap<String, BankDetail>,
    pub event: HashMap<String, String>,
    pub orders: BTreeMap<String, Order>,
    pub positions: HashMap<String, Position>,
    pub trades: BTreeMap<String, Trade>,
    pub transfers: BTreeMap<String, Transfer>,
    pub ping_gap: i32,
    pub eventmq_ip: String,
}

QIFI账户数据结构 Examples

Fields

databaseip: Stringaccount_cookie: Stringpassword: Stringportfolio: Stringbroker_name: Stringcapital_password: Stringbank_password: Stringbankid: Stringinvestor_name: Stringmoney: f64pub_host: Stringsettlement: HashMap<String, String>taskid: Stringtrade_host: Stringupdatetime: Stringwsuri: Stringbankname: Stringtrading_day: Stringstatus: i16accounts: Accountbanks: HashMap<String, BankDetail>event: HashMap<String, String>orders: BTreeMap<String, Order>positions: HashMap<String, Position>trades: BTreeMap<String, Trade>transfers: BTreeMap<String, Transfer>ping_gap: i32eventmq_ip: String

Trait Implementations

impl Clone for QIFI[src]

impl Debug for QIFI[src]

impl Default for QIFI[src]

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

impl Serialize for QIFI[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> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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