pub enum BusinessRejectReason {
    Other,
    UnknownId,
    UnknownSecurity,
    UnsupportedMessageType,
    ApplicationNotAvailable,
    ConditionallyRequiredFieldMissing,
    NotAuthorized,
    DelivertoFirmNotAvailableAtThisTime,
    InvalidPriceIncrement,
}Variants§
Other
UnknownId
UnknownSecurity
UnsupportedMessageType
ApplicationNotAvailable
ConditionallyRequiredFieldMissing
NotAuthorized
DelivertoFirmNotAvailableAtThisTime
InvalidPriceIncrement
Implementations§
source§impl BusinessRejectReason
 
impl BusinessRejectReason
pub fn from_bytes(input: &[u8]) -> Option<BusinessRejectReason>
pub fn from_fix_str(input: &FixStr) -> Option<BusinessRejectReason>
pub fn as_bytes(&self) -> &'static [u8] ⓘ
pub fn as_fix_str(&self) -> &'static FixStr
Trait Implementations§
source§impl Clone for BusinessRejectReason
 
impl Clone for BusinessRejectReason
source§fn clone(&self) -> BusinessRejectReason
 
fn clone(&self) -> BusinessRejectReason
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 BusinessRejectReason
 
impl Debug for BusinessRejectReason
source§impl From<BusinessRejectReason> for &'static [u8]
 
impl From<BusinessRejectReason> for &'static [u8]
source§impl PartialEq<BusinessRejectReason> for BusinessRejectReason
 
impl PartialEq<BusinessRejectReason> for BusinessRejectReason
source§fn eq(&self, other: &BusinessRejectReason) -> bool
 
fn eq(&self, other: &BusinessRejectReason) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl ToFixString for BusinessRejectReason
 
impl ToFixString for BusinessRejectReason
fn to_fix_string(&self) -> FixString
source§impl TryFrom<i64> for BusinessRejectReason
 
impl TryFrom<i64> for BusinessRejectReason
§type Error = SessionRejectReason
 
type Error = SessionRejectReason
The type returned in the event of a conversion error.
source§fn try_from(input: Int) -> Result<BusinessRejectReason, SessionRejectReason>
 
fn try_from(input: Int) -> Result<BusinessRejectReason, SessionRejectReason>
Performs the conversion.