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.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 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 = ParseRejectReason
type Error = ParseRejectReason
The type returned in the event of a conversion error.
Source§fn try_from(input: Int) -> Result<OrdRejReason, ParseRejectReason>
fn try_from(input: Int) -> Result<OrdRejReason, ParseRejectReason>
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