pub enum TradeHandlingInstr {
TradeConfirmation,
TwoPartyReport,
OnePartyReportForMatching,
OnePartyReportForPassThrough,
AutomatedFloorOrderRouting,
TwoPartyReportForClaim,
}
Variants§
TradeConfirmation
Value “0”
TwoPartyReport
Value “1”
OnePartyReportForMatching
Value “2”
OnePartyReportForPassThrough
Value “3”
AutomatedFloorOrderRouting
Value “4”
TwoPartyReportForClaim
Value “5”
Implementations§
Source§impl TradeHandlingInstr
impl TradeHandlingInstr
pub const fn from_bytes(input: &[u8]) -> Option<TradeHandlingInstr>
pub const fn from_fix_str(input: &FixStr) -> Option<TradeHandlingInstr>
pub const fn as_bytes(&self) -> &'static [u8] ⓘ
pub const fn as_fix_str(&self) -> &'static FixStr
Trait Implementations§
Source§impl Clone for TradeHandlingInstr
impl Clone for TradeHandlingInstr
Source§fn clone(&self) -> TradeHandlingInstr
fn clone(&self) -> TradeHandlingInstr
Returns a copy 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 TradeHandlingInstr
impl Debug for TradeHandlingInstr
Source§impl Default for TradeHandlingInstr
impl Default for TradeHandlingInstr
Source§fn default() -> TradeHandlingInstr
fn default() -> TradeHandlingInstr
Returns the “default value” for a type. Read more
Source§impl From<TradeHandlingInstr> for &'static [u8]
impl From<TradeHandlingInstr> for &'static [u8]
Source§impl PartialEq for TradeHandlingInstr
impl PartialEq for TradeHandlingInstr
Source§impl ToFixString for TradeHandlingInstr
impl ToFixString for TradeHandlingInstr
fn to_fix_string(&self) -> FixString
Source§impl TryFrom<u8> for TradeHandlingInstr
impl TryFrom<u8> for TradeHandlingInstr
Source§type Error = ParseRejectReason
type Error = ParseRejectReason
The type returned in the event of a conversion error.
Source§fn try_from(input: u8) -> Result<TradeHandlingInstr, ParseRejectReason>
fn try_from(input: u8) -> Result<TradeHandlingInstr, ParseRejectReason>
Performs the conversion.
impl Copy for TradeHandlingInstr
impl Eq for TradeHandlingInstr
impl StructuralPartialEq for TradeHandlingInstr
Auto Trait Implementations§
impl Freeze for TradeHandlingInstr
impl RefUnwindSafe for TradeHandlingInstr
impl Send for TradeHandlingInstr
impl Sync for TradeHandlingInstr
impl Unpin for TradeHandlingInstr
impl UnwindSafe for TradeHandlingInstr
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