pub enum FixMsgType {
Heartbeat,
Logon,
Logout,
NewOrderSingle,
OrderCancelRequest,
OrderCancelReplaceRequest,
ExecutionReport,
OrderCancelReject,
MarketDataRequest,
MarketDataSnapshot,
}Expand description
FIX message type.
Variants§
Heartbeat
Heartbeat (0).
Logon
Logon (A).
Logout
Logout (5).
NewOrderSingle
New Order Single (D).
OrderCancelRequest
Order Cancel Request (F).
OrderCancelReplaceRequest
Order Cancel/Replace Request (G).
ExecutionReport
Execution Report (8).
OrderCancelReject
Order Cancel Reject (9).
MarketDataRequest
Market Data Request (V).
MarketDataSnapshot
Market Data Snapshot (W).
Implementations§
Trait Implementations§
Source§impl Clone for FixMsgType
impl Clone for FixMsgType
Source§fn clone(&self) -> FixMsgType
fn clone(&self) -> FixMsgType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FixMsgType
impl Debug for FixMsgType
Source§impl PartialEq for FixMsgType
impl PartialEq for FixMsgType
impl Copy for FixMsgType
impl Eq for FixMsgType
impl StructuralPartialEq for FixMsgType
Auto Trait Implementations§
impl Freeze for FixMsgType
impl RefUnwindSafe for FixMsgType
impl Send for FixMsgType
impl Sync for FixMsgType
impl Unpin for FixMsgType
impl UnwindSafe for FixMsgType
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
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.