pub enum MsgType {
Show 28 variants
Heartbeat,
TestRequest,
ResendRequest,
Reject,
SequenceReset,
Logout,
IndicationOfInterest,
Advertisement,
ExecutionReport,
OrderCancelReject,
Logon,
News,
Email,
OrderD,
OrderE,
OrderCancelRequest,
OrderCancelReplaceRequest,
OrderStatusRequest,
Allocation,
ListCancelRequest,
ListExecute,
ListStatusRequest,
ListStatus,
AllocationAck,
DontKnowTrade,
QuoteRequest,
Quote,
SettlementInstructions,
}Available on crate feature
fix41 only.Expand description
Field type variants for MsgType.
Variants§
Heartbeat
Field variant ‘0’.
TestRequest
Field variant ‘1’.
ResendRequest
Field variant ‘2’.
Reject
Field variant ‘3’.
SequenceReset
Field variant ‘4’.
Logout
Field variant ‘5’.
IndicationOfInterest
Field variant ‘6’.
Advertisement
Field variant ‘7’.
ExecutionReport
Field variant ‘8’.
OrderCancelReject
Field variant ‘9’.
Logon
Field variant ‘A’.
News
Field variant ‘B’.
Field variant ‘C’.
OrderD
Field variant ‘D’.
OrderE
Field variant ‘E’.
OrderCancelRequest
Field variant ‘F’.
OrderCancelReplaceRequest
Field variant ‘G’.
OrderStatusRequest
Field variant ‘H’.
Allocation
Field variant ‘J’.
ListCancelRequest
Field variant ‘K’.
ListExecute
Field variant ‘L’.
ListStatusRequest
Field variant ‘M’.
ListStatus
Field variant ‘N’.
AllocationAck
Field variant ‘P’.
DontKnowTrade
Field variant ‘Q’.
QuoteRequest
Field variant ‘R’.
Quote
Field variant ‘S’.
SettlementInstructions
Field variant ‘T’.
Trait Implementations§
Source§impl<'a> FixValue<'a> for MsgType
impl<'a> FixValue<'a> for MsgType
Source§type SerializeSettings = ()
type SerializeSettings = ()
A type with values that customize the serialization algorithm, e.g.
padding information.
Source§fn serialize_with<B>(
&self,
buffer: &mut B,
_settings: Self::SerializeSettings,
) -> usizewhere
B: Buffer,
fn serialize_with<B>(
&self,
buffer: &mut B,
_settings: Self::SerializeSettings,
) -> usizewhere
B: Buffer,
Writes
self to buffer using custom serialization settings.Source§fn deserialize(data: &'a [u8]) -> Result<Self, <Self as FixValue<'a>>::Error>
fn deserialize(data: &'a [u8]) -> Result<Self, <Self as FixValue<'a>>::Error>
Parses and deserializes from
data.Source§fn serialize<B>(&self, buffer: &mut B) -> usizewhere
B: Buffer,
fn serialize<B>(&self, buffer: &mut B) -> usizewhere
B: Buffer,
Writes
self to buffer using default settings.Source§fn deserialize_lossy(data: &'a [u8]) -> Result<Self, Self::Error>
fn deserialize_lossy(data: &'a [u8]) -> Result<Self, Self::Error>
Like
FixValue::deserialize, but it’s allowed to skip some amount of
input checking. Invalid inputs might not trigger errors and instead be
deserialized as random values. Read moreimpl Copy for MsgType
impl Eq for MsgType
impl StructuralPartialEq for MsgType
Auto Trait Implementations§
impl Freeze for MsgType
impl RefUnwindSafe for MsgType
impl Send for MsgType
impl Sync for MsgType
impl Unpin for MsgType
impl UnwindSafe for MsgType
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