pub struct NormalizedOrderType {
pub order_type: OrderType,
pub time_in_force: TimeInForce,
}Expand description
Normalized venue order encoding.
Fields§
§order_type: OrderTypeCanonical order type.
time_in_force: TimeInForceCanonical time-in-force.
Trait Implementations§
Source§impl Clone for NormalizedOrderType
impl Clone for NormalizedOrderType
Source§fn clone(&self) -> NormalizedOrderType
fn clone(&self) -> NormalizedOrderType
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 NormalizedOrderType
Source§impl Debug for NormalizedOrderType
impl Debug for NormalizedOrderType
impl Eq for NormalizedOrderType
Source§impl PartialEq for NormalizedOrderType
impl PartialEq for NormalizedOrderType
Source§fn eq(&self, other: &NormalizedOrderType) -> bool
fn eq(&self, other: &NormalizedOrderType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for NormalizedOrderType
Auto Trait Implementations§
impl Freeze for NormalizedOrderType
impl RefUnwindSafe for NormalizedOrderType
impl Send for NormalizedOrderType
impl Sync for NormalizedOrderType
impl Unpin for NormalizedOrderType
impl UnsafeUnpin for NormalizedOrderType
impl UnwindSafe for NormalizedOrderType
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