pub enum OrdRejReason {
Show 19 variants
    Broker,
    UnknownSymbol,
    ExchangeClosed,
    OrderExceedsLimit,
    TooLateToEnter,
    UnknownOrder,
    DuplicateOrder,
    DuplicateOfAVerballyCommunicatedOrder,
    StaleOrder,
    TradeAlongRequired,
    InvalidInvestorId,
    UnsupportedOrderCharacteristic,
    SurveillenceOption,
    IncorrectQuantity,
    IncorrectAllocatedQuantity,
    UnknownAccount,
    PriceExceedsCurrentPriceBand,
    InvalidPriceIncrement,
    Other,
}Variants§
Broker
Value “0”
UnknownSymbol
Value “1”
ExchangeClosed
Value “2”
OrderExceedsLimit
Value “3”
TooLateToEnter
Value “4”
UnknownOrder
Value “5”
DuplicateOrder
Value “6”
DuplicateOfAVerballyCommunicatedOrder
Value “7”
StaleOrder
Value “8”
TradeAlongRequired
Value “9”
InvalidInvestorId
Value “10”
UnsupportedOrderCharacteristic
Value “11”
SurveillenceOption
Value “12”
IncorrectQuantity
Value “13”
IncorrectAllocatedQuantity
Value “14”
UnknownAccount
Value “15”
PriceExceedsCurrentPriceBand
Value “16”
InvalidPriceIncrement
Value “18”
Other
Value “99”
Implementations§
source§impl OrdRejReason
 
impl OrdRejReason
pub const fn from_bytes(input: &[u8]) -> Option<OrdRejReason>
pub const fn from_fix_str(input: &FixStr) -> Option<OrdRejReason>
pub const fn as_bytes(&self) -> &'static [u8] ⓘ
pub const fn as_fix_str(&self) -> &'static FixStr
Trait Implementations§
source§impl Clone for OrdRejReason
 
impl Clone for OrdRejReason
source§fn clone(&self) -> OrdRejReason
 
fn clone(&self) -> OrdRejReason
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 OrdRejReason
 
impl Debug for OrdRejReason
source§impl Default for OrdRejReason
 
impl Default for OrdRejReason
source§fn default() -> OrdRejReason
 
fn default() -> OrdRejReason
Returns the “default value” for a type. Read more
source§impl From<OrdRejReason> for &'static [u8]
 
impl From<OrdRejReason> for &'static [u8]
source§impl PartialEq for OrdRejReason
 
impl PartialEq for OrdRejReason
source§impl ToFixString for OrdRejReason
 
impl ToFixString for OrdRejReason
fn to_fix_string(&self) -> FixString
source§impl TryFrom<i64> for OrdRejReason
 
impl TryFrom<i64> for OrdRejReason
source§type Error = SessionRejectReason
 
type Error = SessionRejectReason
The type returned in the event of a conversion error.
source§fn try_from(input: Int) -> Result<OrdRejReason, SessionRejectReason>
 
fn try_from(input: Int) -> Result<OrdRejReason, SessionRejectReason>
Performs the conversion.
impl Copy for OrdRejReason
impl Eq for OrdRejReason
impl StructuralPartialEq for OrdRejReason
Auto Trait Implementations§
impl Freeze for OrdRejReason
impl RefUnwindSafe for OrdRejReason
impl Send for OrdRejReason
impl Sync for OrdRejReason
impl Unpin for OrdRejReason
impl UnwindSafe for OrdRejReason
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)