pub enum OrderCategory {
    Order,
    Quote,
    PrivatelyNegotiatedTrade,
    MultilegOrder,
    LinkedOrder,
    QuoteRequest,
    ImpliedOrder,
    CrossOrder,
    StreamingPrice,
}Variants§
Order
Value “1”
Quote
Value “2”
PrivatelyNegotiatedTrade
Value “3”
MultilegOrder
Value “4”
LinkedOrder
Value “5”
QuoteRequest
Value “6”
ImpliedOrder
Value “7”
CrossOrder
Value “8”
StreamingPrice
Value “9”
Implementations§
source§impl OrderCategory
 
impl OrderCategory
pub const fn from_bytes(input: &[u8]) -> Option<OrderCategory>
pub const fn from_fix_str(input: &FixStr) -> Option<OrderCategory>
pub const fn as_bytes(&self) -> &'static [u8] ⓘ
pub const fn as_fix_str(&self) -> &'static FixStr
Trait Implementations§
source§impl Clone for OrderCategory
 
impl Clone for OrderCategory
source§fn clone(&self) -> OrderCategory
 
fn clone(&self) -> OrderCategory
Returns a copy of the value. Read more
1.6.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 OrderCategory
 
impl Debug for OrderCategory
source§impl Default for OrderCategory
 
impl Default for OrderCategory
source§fn default() -> OrderCategory
 
fn default() -> OrderCategory
Returns the “default value” for a type. Read more
source§impl From<OrderCategory> for &'static [u8]
 
impl From<OrderCategory> for &'static [u8]
source§impl PartialEq for OrderCategory
 
impl PartialEq for OrderCategory
source§impl ToFixString for OrderCategory
 
impl ToFixString for OrderCategory
fn to_fix_string(&self) -> FixString
source§impl TryFrom<u8> for OrderCategory
 
impl TryFrom<u8> for OrderCategory
source§type Error = SessionRejectReason
 
type Error = SessionRejectReason
The type returned in the event of a conversion error.
source§fn try_from(input: Char) -> Result<OrderCategory, SessionRejectReason>
 
fn try_from(input: Char) -> Result<OrderCategory, SessionRejectReason>
Performs the conversion.
impl Copy for OrderCategory
impl Eq for OrderCategory
impl StructuralPartialEq for OrderCategory
Auto Trait Implementations§
impl Freeze for OrderCategory
impl RefUnwindSafe for OrderCategory
impl Send for OrderCategory
impl Sync for OrderCategory
impl Unpin for OrderCategory
impl UnwindSafe for OrderCategory
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
 
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)