[][src]Struct fxoanda_definitions::GuaranteedStopLossOrderLevelRestriction

pub struct GuaranteedStopLossOrderLevelRestriction {
    pub volume: Option<f32>,
    pub price_range: Option<f32>,
}

Fields

volume: Option<f32>

Applies to Trades with a guaranteed Stop Loss Order attached for the specified Instrument. This is the total allowed Trade volume that can exist within the priceRange based on the trigger prices of the guaranteed Stop Loss Orders. format: A decimal number encoded as a string. The amount of precision provided depends on what the number represents.

price_range: Option<f32>

The price range the volume applies to. This value is in price units. format: A decimal number encoded as a string. The amount of precision provided depends on what the number represents.

Methods

impl GuaranteedStopLossOrderLevelRestriction[src]

pub fn new() -> GuaranteedStopLossOrderLevelRestriction[src]

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

Applies to Trades with a guaranteed Stop Loss Order attached for the specified Instrument. This is the total allowed Trade volume that can exist within the priceRange based on the trigger prices of the guaranteed Stop Loss Orders. format: A decimal number encoded as a string. The amount of precision provided depends on what the number represents.

  • param f32
  • return GuaranteedStopLossOrderLevelRestriction

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

The price range the volume applies to. This value is in price units. format: A decimal number encoded as a string. The amount of precision provided depends on what the number represents.

  • param f32
  • return GuaranteedStopLossOrderLevelRestriction

Trait Implementations

impl Debug for GuaranteedStopLossOrderLevelRestriction[src]

impl Serialize for GuaranteedStopLossOrderLevelRestriction[src]

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