[][src]Struct fxoanda::PositionFinancing

pub struct PositionFinancing {
    pub instrument: Option<String>,
    pub financing: Option<f32>,
    pub open_trade_financings: Option<Vec<OpenTradeFinancing>>,
}

Fields

instrument: Option<String>

The instrument of the Position that financing is being paid/collected for. format: A string containing the base currency and quote currency delimited by a "_".

financing: Option<f32>

The amount of financing paid/collected for the Position. format: A decimal number encoded as a string. The amount of precision provided depends on the Account's home currency.

open_trade_financings: Option<Vec<OpenTradeFinancing>>

The financing paid/collecte for each open Trade within the Position.

Methods

impl PositionFinancing[src]

pub fn new() -> PositionFinancing[src]

pub fn with_instrument(self, x: String) -> PositionFinancing[src]

The instrument of the Position that financing is being paid/collected for. format: A string containing the base currency and quote currency delimited by a "_".

  • param String
  • return PositionFinancing

pub fn with_financing(self, x: f32) -> PositionFinancing[src]

The amount of financing paid/collected for the Position. format: A decimal number encoded as a string. The amount of precision provided depends on the Account's home currency.

  • param f32
  • return PositionFinancing

pub fn with_open_trade_financings(
    self,
    x: Vec<OpenTradeFinancing>
) -> PositionFinancing
[src]

The financing paid/collecte for each open Trade within the Position.

  • param Vec
  • return PositionFinancing

Trait Implementations

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

impl Serialize for PositionFinancing[src]

impl Debug for PositionFinancing[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<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]

impl<T> Erased for T