Struct kraapi::api::private::trade_balance::KOTradeBalance[][src]

pub struct KOTradeBalance {
    pub c: String,
    pub e: String,
    pub eb: String,
    pub m: String,
    pub mf: String,
    pub ml: String,
    pub n: String,
    pub tb: String,
    pub v: String,
}

Response from the Get Trade Balance endpoint

Fields

c: String

cost basis of open positions

e: String

equity = trade balance + unrealized net profit/loss

eb: String

equivalent balance (combined balance of all currencies)

m: String

margin amount of open positions

mf: String

free margin = equity - initial margin (maximum margin available to open new positions)

ml: String

margin level = (equity / initial margin) * 100

n: String

unrealized net profit/loss of open positions

tb: String

trade balance (combined balance of all equity currencies)

v: String

current floating valuation of open positions

Trait Implementations

impl Debug for KOTradeBalance[src]

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

impl Output for KOTradeBalance[src]

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