pub enum DeskOrderHandlingInst {
Show 24 variants
AddOnOrder,
AllOrNone,
CashNotHeld,
DirectedOrder,
ExchangeForPhysicalTransaction,
FillOrKill,
ImbalanceOnly,
ImmediateOrCancel,
LimitOnOpen,
LimitOnClose,
MarketAtOpen,
MarketAtClose,
MarketOnOpen,
MarketOnClose,
MinimumQuantity,
NotHeld,
OverTheDay,
Pegged,
ReserveSizeOrder,
StopStockTransaction,
Scale,
TimeOrder,
TrailingStop,
Work,
}
Variants§
AddOnOrder
Value “ADD”
AllOrNone
Value “AON”
CashNotHeld
Value “CNH”
DirectedOrder
Value “DIR”
ExchangeForPhysicalTransaction
Value “E.W”
FillOrKill
Value “FOK”
ImbalanceOnly
Value “IO”
ImmediateOrCancel
Value “IOC”
LimitOnOpen
Value “LOO”
LimitOnClose
Value “LOC”
MarketAtOpen
Value “MAO”
MarketAtClose
Value “MAC”
MarketOnOpen
Value “MOO”
MarketOnClose
Value “MOC”
MinimumQuantity
Value “MQT”
NotHeld
Value “NH”
OverTheDay
Value “OVD”
Pegged
Value “PEG”
ReserveSizeOrder
Value “RSV”
StopStockTransaction
Value “S.W”
Scale
Value “SCL”
TimeOrder
Value “TMO”
TrailingStop
Value “TS”
Work
Value “WRK”
Implementations§
Source§impl DeskOrderHandlingInst
impl DeskOrderHandlingInst
pub const fn from_bytes(input: &[u8]) -> Option<DeskOrderHandlingInst>
pub const fn from_fix_str(input: &FixStr) -> Option<DeskOrderHandlingInst>
pub const fn as_bytes(&self) -> &'static [u8] ⓘ
pub const fn as_fix_str(&self) -> &'static FixStr
Trait Implementations§
Source§impl Clone for DeskOrderHandlingInst
impl Clone for DeskOrderHandlingInst
Source§fn clone(&self) -> DeskOrderHandlingInst
fn clone(&self) -> DeskOrderHandlingInst
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 DeskOrderHandlingInst
impl Debug for DeskOrderHandlingInst
Source§impl Default for DeskOrderHandlingInst
impl Default for DeskOrderHandlingInst
Source§fn default() -> DeskOrderHandlingInst
fn default() -> DeskOrderHandlingInst
Returns the “default value” for a type. Read more
Source§impl From<DeskOrderHandlingInst> for &'static [u8]
impl From<DeskOrderHandlingInst> for &'static [u8]
Source§impl PartialEq for DeskOrderHandlingInst
impl PartialEq for DeskOrderHandlingInst
Source§impl ToFixString for DeskOrderHandlingInst
impl ToFixString for DeskOrderHandlingInst
fn to_fix_string(&self) -> FixString
Source§impl TryFrom<&FixStr> for DeskOrderHandlingInst
impl TryFrom<&FixStr> for DeskOrderHandlingInst
Source§type Error = ParseRejectReason
type Error = ParseRejectReason
The type returned in the event of a conversion error.
Source§fn try_from(input: &FixStr) -> Result<DeskOrderHandlingInst, ParseRejectReason>
fn try_from(input: &FixStr) -> Result<DeskOrderHandlingInst, ParseRejectReason>
Performs the conversion.
impl Copy for DeskOrderHandlingInst
impl Eq for DeskOrderHandlingInst
impl StructuralPartialEq for DeskOrderHandlingInst
Auto Trait Implementations§
impl Freeze for DeskOrderHandlingInst
impl RefUnwindSafe for DeskOrderHandlingInst
impl Send for DeskOrderHandlingInst
impl Sync for DeskOrderHandlingInst
impl Unpin for DeskOrderHandlingInst
impl UnwindSafe for DeskOrderHandlingInst
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