[][src]Struct fxoanda_definitions::HomeConversions

pub struct HomeConversions {
    pub currency: Option<String>,
    pub account_gain: Option<f32>,
    pub position_value: Option<f32>,
    pub account_loss: Option<f32>,
}

Fields

currency: Option<String>

The currency to be converted into the home currency. format: A string containing an ISO 4217 currency (http://en.wikipedia.org/wiki/ISO_4217)

account_gain: Option<f32>

The factor used to convert any gains for an Account in the specified currency into the Account's home currency. This would include positive realized P/L and positive financing amounts. Conversion is performed by multiplying the positive P/L by the conversion factor. format: A decimal number encoded as a string. The amount of precision provided depends on what the number represents.

position_value: Option<f32>

The factor used to convert a Position or Trade Value in the specified currency into the Account's home currency. Conversion is performed by multiplying the Position or Trade Value by the conversion factor. format: A decimal number encoded as a string. The amount of precision provided depends on what the number represents.

account_loss: Option<f32>

The string representation of a decimal number. format: A decimal number encoded as a string. The amount of precision provided depends on what the number represents.

Methods

impl HomeConversions[src]

pub fn new() -> HomeConversions[src]

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

The currency to be converted into the home currency. format: A string containing an ISO 4217 currency (http://en.wikipedia.org/wiki/ISO_4217)

  • param String
  • return HomeConversions

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

The factor used to convert any gains for an Account in the specified currency into the Account's home currency. This would include positive realized P/L and positive financing amounts. Conversion is performed by multiplying the positive P/L by the conversion factor. format: A decimal number encoded as a string. The amount of precision provided depends on what the number represents.

  • param f32
  • return HomeConversions

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

The factor used to convert a Position or Trade Value in the specified currency into the Account's home currency. Conversion is performed by multiplying the Position or Trade Value by the conversion factor. format: A decimal number encoded as a string. The amount of precision provided depends on what the number represents.

  • param f32
  • return HomeConversions

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

The string representation of a decimal number. format: A decimal number encoded as a string. The amount of precision provided depends on what the number represents.

  • param f32
  • return HomeConversions

Trait Implementations

impl Debug for HomeConversions[src]

impl Serialize for HomeConversions[src]

impl<'de> Deserialize<'de> for HomeConversions[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]