[][src]Struct fxoanda::LiquidityRegenerationScheduleStep

pub struct LiquidityRegenerationScheduleStep {
    pub bid_liquidity_used: Option<f32>,
    pub timestamp: Option<DateTime<Utc>>,
    pub ask_liquidity_used: Option<f32>,
}

Fields

bid_liquidity_used: Option<f32>

The amount of bid liquidity used at this step in the schedule. format: A decimal number encoded as a string. The amount of precision provided depends on what the number represents.

timestamp: Option<DateTime<Utc>>

The timestamp of the schedule step. format: The RFC 3339 representation is a string conforming to https://tools.ietf.org/rfc/rfc3339.txt. The Unix representation is a string representing the number of seconds since the Unix Epoch (January 1st, 1970 at UTC). The value is a fractional number, where the fractional part represents a fraction of a second (up to nine decimal places).

ask_liquidity_used: Option<f32>

The amount of ask liquidity used at this step in the schedule. format: A decimal number encoded as a string. The amount of precision provided depends on what the number represents.

Methods

impl LiquidityRegenerationScheduleStep[src]

pub fn new() -> LiquidityRegenerationScheduleStep[src]

pub fn with_bid_liquidity_used(
    self,
    x: f32
) -> LiquidityRegenerationScheduleStep
[src]

The amount of bid liquidity used at this step in the schedule. format: A decimal number encoded as a string. The amount of precision provided depends on what the number represents.

  • param f32
  • return LiquidityRegenerationScheduleStep

pub fn with_timestamp(
    self,
    x: DateTime<Utc>
) -> LiquidityRegenerationScheduleStep
[src]

The timestamp of the schedule step. format: The RFC 3339 representation is a string conforming to https://tools.ietf.org/rfc/rfc3339.txt. The Unix representation is a string representing the number of seconds since the Unix Epoch (January 1st, 1970 at UTC). The value is a fractional number, where the fractional part represents a fraction of a second (up to nine decimal places).

  • param DateTime
  • return LiquidityRegenerationScheduleStep

pub fn with_ask_liquidity_used(
    self,
    x: f32
) -> LiquidityRegenerationScheduleStep
[src]

The amount of ask liquidity used at this step in the schedule. format: A decimal number encoded as a string. The amount of precision provided depends on what the number represents.

  • param f32
  • return LiquidityRegenerationScheduleStep

Trait Implementations

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

impl Serialize for LiquidityRegenerationScheduleStep[src]

impl Debug for LiquidityRegenerationScheduleStep[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