[][src]Struct fxoanda_definitions::UnitsAvailable

pub struct UnitsAvailable {
    pub default: Option<UnitsAvailableDetails>,
    pub reduce_only: Option<UnitsAvailableDetails>,
    pub open_only: Option<UnitsAvailableDetails>,
    pub reduce_first: Option<UnitsAvailableDetails>,
}

Fields

default: Option<UnitsAvailableDetails>

Representation of many units of an Instrument are available to be traded for both long and short Orders.

reduce_only: Option<UnitsAvailableDetails>

Representation of many units of an Instrument are available to be traded for both long and short Orders.

open_only: Option<UnitsAvailableDetails>

Representation of many units of an Instrument are available to be traded for both long and short Orders.

reduce_first: Option<UnitsAvailableDetails>

Representation of many units of an Instrument are available to be traded for both long and short Orders.

Methods

impl UnitsAvailable[src]

pub fn new() -> UnitsAvailable[src]

pub fn with_default(self, x: UnitsAvailableDetails) -> Self[src]

Representation of many units of an Instrument are available to be traded for both long and short Orders.

  • param UnitsAvailableDetails
  • return UnitsAvailable

pub fn with_reduce_only(self, x: UnitsAvailableDetails) -> Self[src]

Representation of many units of an Instrument are available to be traded for both long and short Orders.

  • param UnitsAvailableDetails
  • return UnitsAvailable

pub fn with_open_only(self, x: UnitsAvailableDetails) -> Self[src]

Representation of many units of an Instrument are available to be traded for both long and short Orders.

  • param UnitsAvailableDetails
  • return UnitsAvailable

pub fn with_reduce_first(self, x: UnitsAvailableDetails) -> Self[src]

Representation of many units of an Instrument are available to be traded for both long and short Orders.

  • param UnitsAvailableDetails
  • return UnitsAvailable

Trait Implementations

impl Debug for UnitsAvailable[src]

impl Serialize for UnitsAvailable[src]

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