Enum easyfix_messages::fields::ListRejectReason  
source · pub enum ListRejectReason {
    Broker,
    ExchangeClosed,
    TooLateToEnter,
    UnknownOrder,
    DuplicateOrder,
    UnsupportedOrderCharacteristic,
    Other,
}Variants§
Broker
ExchangeClosed
TooLateToEnter
UnknownOrder
DuplicateOrder
UnsupportedOrderCharacteristic
Other
Implementations§
source§impl ListRejectReason
 
impl ListRejectReason
pub fn from_bytes(input: &[u8]) -> Option<ListRejectReason>
pub fn from_fix_str(input: &FixStr) -> Option<ListRejectReason>
pub fn as_bytes(&self) -> &'static [u8] ⓘ
pub 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.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 ListRejectReason
 
impl Debug for ListRejectReason
source§impl From<ListRejectReason> for &'static [u8]
 
impl From<ListRejectReason> for &'static [u8]
source§impl PartialEq<ListRejectReason> for ListRejectReason
 
impl PartialEq<ListRejectReason> for ListRejectReason
source§fn eq(&self, other: &ListRejectReason) -> bool
 
fn eq(&self, other: &ListRejectReason) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.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
§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 StructuralEq for ListRejectReason
impl StructuralPartialEq for ListRejectReason
Auto Trait Implementations§
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