[][src]Struct fxoanda_definitions::CalculatedTradeState

pub struct CalculatedTradeState {
    pub unrealized_pl: Option<f32>,
    pub id: Option<String>,
    pub margin_used: Option<f32>,
}

Fields

unrealized_pl: Option<f32>

The Trade's unrealized profit/loss. format: A decimal number encoded as a string. The amount of precision provided depends on the Account's home currency.

id: Option<String>

The Trade's ID. format: The string representation of the OANDA-assigned TradeID. OANDA- assigned TradeIDs are positive integers, and are derived from the TransactionID of the Transaction that opened the Trade.

margin_used: Option<f32>

Margin currently used by the Trade. format: A decimal number encoded as a string. The amount of precision provided depends on the Account's home currency.

Methods

impl CalculatedTradeState[src]

pub fn new() -> CalculatedTradeState[src]

pub fn with_unrealized_pl(self, x: f32) -> Self[src]

The Trade's unrealized profit/loss. format: A decimal number encoded as a string. The amount of precision provided depends on the Account's home currency.

  • param f32
  • return CalculatedTradeState

pub fn with_id(self, x: String) -> Self[src]

The Trade's ID. format: The string representation of the OANDA-assigned TradeID. OANDA- assigned TradeIDs are positive integers, and are derived from the TransactionID of the Transaction that opened the Trade.

  • param String
  • return CalculatedTradeState

pub fn with_margin_used(self, x: f32) -> Self[src]

Margin currently used by the Trade. format: A decimal number encoded as a string. The amount of precision provided depends on the Account's home currency.

  • param f32
  • return CalculatedTradeState

Trait Implementations

impl Debug for CalculatedTradeState[src]

impl Serialize for CalculatedTradeState[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]