pub enum ListRejectReason {
    Broker,
    ExchangeClosed,
    TooLateToEnter,
    UnknownOrder,
    DuplicateOrder,
    UnsupportedOrderCharacteristic,
    Other,
}Variants§
Broker
Value “0”
ExchangeClosed
Value “2”
TooLateToEnter
Value “4”
UnknownOrder
Value “5”
DuplicateOrder
Value “6”
UnsupportedOrderCharacteristic
Value “11”
Other
Value “99”
Implementations§
source§impl ListRejectReason
 
impl ListRejectReason
pub const fn from_bytes(input: &[u8]) -> Option<ListRejectReason>
pub const fn from_fix_str(input: &FixStr) -> Option<ListRejectReason>
pub const fn as_bytes(&self) -> &'static [u8] ⓘ
pub const fn as_fix_str(&self) -> &'static FixStr
Trait Implementations§
source§impl Clone for ListRejectReason
 
impl Clone for ListRejectReason
source§fn clone(&self) -> ListRejectReason
 
fn clone(&self) -> ListRejectReason
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 ListRejectReason
 
impl Debug for ListRejectReason
source§impl Default for ListRejectReason
 
impl Default for ListRejectReason
source§fn default() -> ListRejectReason
 
fn default() -> ListRejectReason
Returns the “default value” for a type. Read more
source§impl From<ListRejectReason> for &'static [u8]
 
impl From<ListRejectReason> for &'static [u8]
source§impl PartialEq for ListRejectReason
 
impl PartialEq for ListRejectReason
source§impl ToFixString for ListRejectReason
 
impl ToFixString for ListRejectReason
fn to_fix_string(&self) -> FixString
source§impl TryFrom<i64> for ListRejectReason
 
impl TryFrom<i64> for ListRejectReason
source§type Error = SessionRejectReason
 
type Error = SessionRejectReason
The type returned in the event of a conversion error.
source§fn try_from(input: Int) -> Result<ListRejectReason, SessionRejectReason>
 
fn try_from(input: Int) -> Result<ListRejectReason, SessionRejectReason>
Performs the conversion.
impl Copy for ListRejectReason
impl Eq for ListRejectReason
impl StructuralPartialEq for ListRejectReason
Auto Trait Implementations§
impl Freeze for ListRejectReason
impl RefUnwindSafe for ListRejectReason
impl Send for ListRejectReason
impl Sync for ListRejectReason
impl Unpin for ListRejectReason
impl UnwindSafe for ListRejectReason
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)