pub struct Price {
    pub asks: Option<Vec<PriceBucket>>,
    pub base_ask: Option<f32>,
    pub timestamp: Option<DateTime<Utc>>,
    pub closeout_bid: Option<f32>,
    pub bids: Option<Vec<PriceBucket>>,
    pub instrument: Option<String>,
    pub base_bid: Option<f32>,
    pub closeout_ask: Option<f32>,
    pub tradeable: Option<bool>,
}

Fields§

§asks: Option<Vec<PriceBucket>>

The list of prices and liquidity available on the Instrument’s ask side. It is possible for this list to be empty if there is no ask liquidity currently available for the Instrument in the Account.

§base_ask: Option<f32>

The base ask price as calculated by pricing. format: A decimal number encodes as a string. The amount of precision provided depends on the Instrument.

§timestamp: Option<DateTime<Utc>>

The date/time when the Price was created. 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).

§closeout_bid: Option<f32>

The closeout bid price. This price is used when a bid is required to closeout a Position (margin closeout or manual) yet there is no bid liquidity. The closeout bid is never used to open a new position. format: A decimal number encodes as a string. The amount of precision provided depends on the Instrument.

§bids: Option<Vec<PriceBucket>>

The list of prices and liquidity available on the Instrument’s bid side. It is possible for this list to be empty if there is no bid liquidity currently available for the Instrument in the Account.

§instrument: Option<String>

The Price’s Instrument. format: A string containing the base currency and quote currency delimited by a “_”.

§base_bid: Option<f32>

The base bid price as calculated by pricing. format: A decimal number encodes as a string. The amount of precision provided depends on the Instrument.

§closeout_ask: Option<f32>

The closeout ask price. This price is used when an ask is required to closeout a Position (margin closeout or manual) yet there is no ask liquidity. The closeout ask is never used to open a new position. format: A decimal number encodes as a string. The amount of precision provided depends on the Instrument.

§tradeable: Option<bool>

Flag indicating if the Price is tradeable or not

Implementations§

source§

impl Price

source

pub fn new() -> Price

source

pub fn with_asks(self, x: Vec<PriceBucket>) -> Self

The list of prices and liquidity available on the Instrument’s ask side. It is possible for this list to be empty if there is no ask liquidity currently available for the Instrument in the Account.

  • param Vec
  • return Price
source

pub fn with_base_ask(self, x: f32) -> Self

The base ask price as calculated by pricing. format: A decimal number encodes as a string. The amount of precision provided depends on the Instrument.

  • param f32
  • return Price
source

pub fn with_timestamp(self, x: DateTime<Utc>) -> Self

The date/time when the Price was created. 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 Price
source

pub fn with_closeout_bid(self, x: f32) -> Self

The closeout bid price. This price is used when a bid is required to closeout a Position (margin closeout or manual) yet there is no bid liquidity. The closeout bid is never used to open a new position. format: A decimal number encodes as a string. The amount of precision provided depends on the Instrument.

  • param f32
  • return Price
source

pub fn with_bids(self, x: Vec<PriceBucket>) -> Self

The list of prices and liquidity available on the Instrument’s bid side. It is possible for this list to be empty if there is no bid liquidity currently available for the Instrument in the Account.

  • param Vec
  • return Price
source

pub fn with_instrument(self, x: String) -> Self

The Price’s Instrument. format: A string containing the base currency and quote currency delimited by a “_”.

  • param String
  • return Price
source

pub fn with_base_bid(self, x: f32) -> Self

The base bid price as calculated by pricing. format: A decimal number encodes as a string. The amount of precision provided depends on the Instrument.

  • param f32
  • return Price
source

pub fn with_closeout_ask(self, x: f32) -> Self

The closeout ask price. This price is used when an ask is required to closeout a Position (margin closeout or manual) yet there is no ask liquidity. The closeout ask is never used to open a new position. format: A decimal number encodes as a string. The amount of precision provided depends on the Instrument.

  • param f32
  • return Price
source

pub fn with_tradeable(self, x: bool) -> Self

Flag indicating if the Price is tradeable or not

  • param bool
  • return Price

Trait Implementations§

source§

impl Debug for Price

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for Price

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Serialize for Price

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

§

impl Freeze for Price

§

impl RefUnwindSafe for Price

§

impl Send for Price

§

impl Sync for Price

§

impl Unpin for Price

§

impl UnwindSafe for Price

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,