[][src]Struct qifi_rs::account::Order

pub struct Order {
    pub seqno: i32,
    pub user_id: String,
    pub order_id: String,
    pub exchange_id: String,
    pub instrument_id: String,
    pub direction: String,
    pub offset: String,
    pub volume_orign: f64,
    pub price_type: String,
    pub limit_price: f64,
    pub time_condition: String,
    pub volume_condition: String,
    pub insert_date_time: i64,
    pub exchange_order_id: String,
    pub status: String,
    pub volume_left: f64,
    pub last_msg: String,
}

Fields

seqno: i32user_id: Stringorder_id: Stringexchange_id: Stringinstrument_id: Stringdirection: Stringoffset: Stringvolume_orign: f64price_type: Stringlimit_price: f64time_condition: Stringvolume_condition: Stringinsert_date_time: i64exchange_order_id: Stringstatus: Stringvolume_left: f64last_msg: String

Trait Implementations

impl Clone for Order[src]

impl Debug for Order[src]

impl Default for Order[src]

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

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