Struct binance_client::OrderGetResponse[][src]

pub struct OrderGetResponse {
    pub symbol: String,
    pub order_id: i64,
    pub client_order_id: String,
    pub price: Decimal,
    pub orig_qty: Decimal,
    pub executed_qty: Decimal,
    pub cummulative_quote_qty: Decimal,
    pub status: OrderStatus,
    pub time_in_force: OrderTimeInForce,
    pub type: OrderType,
    pub side: OrderSide,
    pub stop_price: Decimal,
    pub iceberg_qty: Decimal,
    pub time: i64,
    pub update_time: i64,
    pub is_working: bool,
}

The https://www.binance.com/api/v3/order GET response.

Fields

symbol: String

The symbol name.

order_id: i64

The server-side order ID.

client_order_id: String

The client-side order ID.

price: Decimal

The order price.

orig_qty: Decimal

The initial order quantity.

executed_qty: Decimal

The order quantity executed so far.

cummulative_quote_qty: Decimal

Usually the same as executed_qty.

status: OrderStatus

The order status.

time_in_force: OrderTimeInForce

The order time-in-force.

type: OrderType

The order type.

side: OrderSide

The order side.

stop_price: Decimal

Used with STOP_LOSS, STOP_LOSS_LIMIT, TAKE_PROFIT, and TAKE_PROFIT_LIMIT orders.

iceberg_qty: Decimal

The iceberg order quantity.

time: i64

The order time in milliseconds.

update_time: i64

Usually the same as time.

is_working: bool

Unknown value.

Trait Implementations

impl Debug for Response[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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

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

impl<T> Typeable for T where
    T: Any