pub struct OrderContext {
pub identity: OrderIdentity,
pub quantity: Quantity,
pub price: Option<Price>,
pub trigger_price: Option<Price>,
pub trigger_type: Option<TriggerType>,
pub time_in_force: TimeInForce,
pub is_post_only: bool,
pub is_reduce_only: bool,
pub is_quote_quantity: bool,
}Expand description
Common order terms captured for live execution tasks.
Fields§
§identity: OrderIdentityThe order identity.
quantity: QuantityThe order quantity.
price: Option<Price>The order price (LIMIT).
trigger_price: Option<Price>The order trigger price (STOP).
trigger_type: Option<TriggerType>The trigger type for the order.
time_in_force: TimeInForceThe order time in force.
is_post_only: boolWhether the order must add liquidity.
is_reduce_only: boolWhether the order may only reduce a position.
is_quote_quantity: boolWhether quantity is denominated in the quote currency.
Trait Implementations§
Source§impl Clone for OrderContext
impl Clone for OrderContext
Source§fn clone(&self) -> OrderContext
fn clone(&self) -> OrderContext
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 moreimpl Copy for OrderContext
Source§impl Debug for OrderContext
impl Debug for OrderContext
impl Eq for OrderContext
Source§impl From<&OrderAny> for OrderContext
impl From<&OrderAny> for OrderContext
Source§impl PartialEq for OrderContext
impl PartialEq for OrderContext
impl StructuralPartialEq for OrderContext
Auto Trait Implementations§
impl Freeze for OrderContext
impl RefUnwindSafe for OrderContext
impl Send for OrderContext
impl Sync for OrderContext
impl Unpin for OrderContext
impl UnsafeUnpin for OrderContext
impl UnwindSafe for OrderContext
Blanket Implementations§
impl<T> Allocation for T
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,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more