Struct kraapi::api::private::KOTradeData[][src]

pub struct KOTradeData {
    pub ordertxid: String,
    pub pair: String,
    pub time: f64,
    pub tradetype: String,
    pub ordertype: String,
    pub price: String,
    pub cost: String,
    pub fee: String,
    pub vol: String,
    pub margin: Option<String>,
    pub misc: String,
    pub posstatus: Option<String>,
    pub cprice: Option<String>,
    pub cfee: Option<String>,
    pub cvol: Option<String>,
    pub cmargin: Option<String>,
    pub net: Option<String>,
    pub trades: Option<String>,
}

Trade info data | See KOTradesInfo - KOTradeHistory

Fields

ordertxid: String

Order responsible for execution of trade

pair: Stringtime: f64tradetype: Stringordertype: Stringprice: Stringcost: Stringfee: Stringvol: Stringmargin: Option<String>misc: Stringposstatus: Option<String>cprice: Option<String>cfee: Option<String>cvol: Option<String>cmargin: Option<String>net: Option<String>trades: Option<String>

Trait Implementations

impl Debug for KOTradeData[src]

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

impl Serialize for KOTradeData[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.