Struct kucoin_rs::kucoin::model::trade::OrderInfo[][src]

pub struct OrderInfo {
Show fields pub id: String, pub symbol: String, pub op_type: String, pub type: String, pub side: String, pub price: String, pub size: String, pub funds: String, pub deal_funds: String, pub deal_size: String, pub fee: String, pub fee_currency: String, pub stp: String, pub stop: String, pub stop_triggered: bool, pub stop_price: String, pub time_in_force: String, pub post_only: bool, pub hidden: bool, pub iceberg: bool, pub visible_size: String, pub cancel_after: i64, pub channel: String, pub client_oid: String, pub remark: Option<String>, pub tags: Option<String>, pub is_active: Option<bool>, pub cancel_exist: bool, pub created_at: i64, pub trade_type: String,
}

Fields

id: Stringsymbol: Stringop_type: Stringtype: Stringside: Stringprice: Stringsize: Stringfunds: Stringdeal_funds: Stringdeal_size: Stringfee: Stringfee_currency: Stringstp: Stringstop: Stringstop_triggered: boolstop_price: Stringtime_in_force: Stringpost_only: boolhidden: booliceberg: boolvisible_size: Stringcancel_after: i64channel: Stringclient_oid: Stringremark: Option<String>tags: Option<String>is_active: Option<bool>cancel_exist: boolcreated_at: i64trade_type: String

Trait Implementations

impl Debug for OrderInfo[src]

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

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