pub enum QuoteEntryRejectReason {
UnknownSymbol = 1,
Exchange = 2,
QuoteExceedsLimit = 3,
TooLateToEnter = 4,
UnknownQuote = 5,
DuplicateQuote = 6,
InvalidBidAskSpread = 7,
InvalidPrice = 8,
NotAuthorizedToQuoteSecurity = 9,
}Variants§
UnknownSymbol = 1
Exchange = 2
QuoteExceedsLimit = 3
TooLateToEnter = 4
UnknownQuote = 5
DuplicateQuote = 6
InvalidBidAskSpread = 7
InvalidPrice = 8
NotAuthorizedToQuoteSecurity = 9
Implementations§
Source§impl QuoteEntryRejectReason
impl QuoteEntryRejectReason
pub const fn from_const_bytes(s: &[u8]) -> Result<Self, FixParseError>
Trait Implementations§
Source§impl Clone for QuoteEntryRejectReason
impl Clone for QuoteEntryRejectReason
Source§fn clone(&self) -> QuoteEntryRejectReason
fn clone(&self) -> QuoteEntryRejectReason
Returns a duplicate 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 QuoteEntryRejectReason
impl Debug for QuoteEntryRejectReason
Source§impl FromStr for QuoteEntryRejectReason
impl FromStr for QuoteEntryRejectReason
Source§impl Hash for QuoteEntryRejectReason
impl Hash for QuoteEntryRejectReason
Source§impl PartialEq for QuoteEntryRejectReason
impl PartialEq for QuoteEntryRejectReason
impl Copy for QuoteEntryRejectReason
impl Eq for QuoteEntryRejectReason
impl StructuralPartialEq for QuoteEntryRejectReason
Auto Trait Implementations§
impl Freeze for QuoteEntryRejectReason
impl RefUnwindSafe for QuoteEntryRejectReason
impl Send for QuoteEntryRejectReason
impl Sync for QuoteEntryRejectReason
impl Unpin for QuoteEntryRejectReason
impl UnwindSafe for QuoteEntryRejectReason
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