pub enum QuoteRejectReason {
Show 14 variants
    UnknownSymbol,
    Exchange,
    QuoteRequestExceedsLimit,
    TooLateToEnter,
    UnknownQuote,
    DuplicateQuote,
    InvalidBidAskSpread,
    InvalidPrice,
    NotAuthorizedToQuoteSecurity,
    PriceExceedsCurrentPriceBand,
    QuoteLocked,
    Other,
    InvalidOrUnknownSecurityIssuer,
    InvalidOrUnknownIssuerOfUnderlyingSecurity,
}Variants§
UnknownSymbol
Exchange
QuoteRequestExceedsLimit
TooLateToEnter
UnknownQuote
DuplicateQuote
InvalidBidAskSpread
InvalidPrice
NotAuthorizedToQuoteSecurity
PriceExceedsCurrentPriceBand
QuoteLocked
Other
InvalidOrUnknownSecurityIssuer
InvalidOrUnknownIssuerOfUnderlyingSecurity
Implementations§
source§impl QuoteRejectReason
 
impl QuoteRejectReason
pub fn from_bytes(input: &[u8]) -> Option<QuoteRejectReason>
pub fn from_fix_str(input: &FixStr) -> Option<QuoteRejectReason>
pub fn as_bytes(&self) -> &'static [u8] ⓘ
pub fn as_fix_str(&self) -> &'static FixStr
Trait Implementations§
source§impl Clone for QuoteRejectReason
 
impl Clone for QuoteRejectReason
source§fn clone(&self) -> QuoteRejectReason
 
fn clone(&self) -> QuoteRejectReason
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 QuoteRejectReason
 
impl Debug for QuoteRejectReason
source§impl From<QuoteRejectReason> for &'static [u8]
 
impl From<QuoteRejectReason> for &'static [u8]
source§impl PartialEq<QuoteRejectReason> for QuoteRejectReason
 
impl PartialEq<QuoteRejectReason> for QuoteRejectReason
source§fn eq(&self, other: &QuoteRejectReason) -> bool
 
fn eq(&self, other: &QuoteRejectReason) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl ToFixString for QuoteRejectReason
 
impl ToFixString for QuoteRejectReason
fn to_fix_string(&self) -> FixString
source§impl TryFrom<i64> for QuoteRejectReason
 
impl TryFrom<i64> for QuoteRejectReason
§type Error = SessionRejectReason
 
type Error = SessionRejectReason
The type returned in the event of a conversion error.
source§fn try_from(input: Int) -> Result<QuoteRejectReason, SessionRejectReason>
 
fn try_from(input: Int) -> Result<QuoteRejectReason, SessionRejectReason>
Performs the conversion.