pub struct RestingOrder {
pub client_order_id: ClientOrderId,
pub order_side: OrderSideSpecified,
pub order_type: OrderType,
pub trigger_price: Option<Price>,
pub limit_price: Option<Price>,
pub is_activated: bool,
}Expand description
Lightweight order information for matching/trigger checking.
Fields§
§client_order_id: ClientOrderId§order_side: OrderSideSpecified§order_type: OrderType§trigger_price: Option<Price>§limit_price: Option<Price>§is_activated: boolImplementations§
Source§impl RestingOrder
impl RestingOrder
Sourcepub const fn new(
client_order_id: ClientOrderId,
order_side: OrderSideSpecified,
order_type: OrderType,
trigger_price: Option<Price>,
limit_price: Option<Price>,
is_activated: bool,
) -> Self
pub const fn new( client_order_id: ClientOrderId, order_side: OrderSideSpecified, order_type: OrderType, trigger_price: Option<Price>, limit_price: Option<Price>, is_activated: bool, ) -> Self
Creates a new RestingOrder instance.
MARKET_TO_LIMIT orders may legitimately be constructed with both
trigger_price and limit_price set to None until they convert to
a limit at execution time; OrderMatchingCore::match_order returns
None for such orders. This is a known coverage gap and not a bug
in the constructor.
Trait Implementations§
Source§impl Clone for RestingOrder
impl Clone for RestingOrder
Source§fn clone(&self) -> RestingOrder
fn clone(&self) -> RestingOrder
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 RestingOrder
Source§impl Debug for RestingOrder
impl Debug for RestingOrder
impl Eq for RestingOrder
Source§impl From<&PassiveOrderAny> for RestingOrder
impl From<&PassiveOrderAny> for RestingOrder
Source§impl PartialEq for RestingOrder
impl PartialEq for RestingOrder
Source§fn eq(&self, other: &RestingOrder) -> bool
fn eq(&self, other: &RestingOrder) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RestingOrder
Auto Trait Implementations§
impl Freeze for RestingOrder
impl RefUnwindSafe for RestingOrder
impl Send for RestingOrder
impl Sync for RestingOrder
impl Unpin for RestingOrder
impl UnsafeUnpin for RestingOrder
impl UnwindSafe for RestingOrder
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