Struct BinanceSpotOrderDetail
#[non_exhaustive]pub struct BinanceSpotOrderDetail {
pub order: Order,
pub client_order_id: String,
pub order_type: String,
pub time_in_force: String,
pub filled_quote_quantity: Decimal,
pub updated_at: Option<Timestamp>,
}Expand description
A Spot order lookup, including Binance-specific fields and terminal orders.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.order: OrderThe order in maxt terms.
client_order_id: StringThe identifier the caller supplied, or the one Binance generated.
order_type: StringBinance’s own order type, for example LIMIT_MAKER or STOP_LOSS.
Includes the types OrderType does not model.
time_in_force: StringBinance’s own time in force, for example GTC or FOK.
filled_quote_quantity: DecimalTotal quote asset spent or received so far.
updated_at: Option<Timestamp>When Binance last changed the order.
Trait Implementations§
§impl Clone for BinanceSpotOrderDetail
impl Clone for BinanceSpotOrderDetail
§fn clone(&self) -> BinanceSpotOrderDetail
fn clone(&self) -> BinanceSpotOrderDetail
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more§impl Debug for BinanceSpotOrderDetail
impl Debug for BinanceSpotOrderDetail
impl Eq for BinanceSpotOrderDetail
§impl PartialEq for BinanceSpotOrderDetail
impl PartialEq for BinanceSpotOrderDetail
impl StructuralPartialEq for BinanceSpotOrderDetail
Auto Trait Implementations§
impl Freeze for BinanceSpotOrderDetail
impl RefUnwindSafe for BinanceSpotOrderDetail
impl Send for BinanceSpotOrderDetail
impl Sync for BinanceSpotOrderDetail
impl Unpin for BinanceSpotOrderDetail
impl UnsafeUnpin for BinanceSpotOrderDetail
impl UnwindSafe for BinanceSpotOrderDetail
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.