pub enum BusinessRejectReason {
Other = 0,
UnknownId = 1,
UnknownSecurity = 2,
UnsupportedMessageType = 3,
ApplicationNotAvailable = 4,
ConditionallyRequiredFieldMissing = 5,
NotAuthorized = 6,
DeliverToFirmNotAvailableAtThisTime = 7,
}Expand description
Business-level reject reason codes (FIX 4.4, tag 380)
Variants§
Other = 0
Other
UnknownId = 1
Unknown ID
UnknownSecurity = 2
Unknown Security
UnsupportedMessageType = 3
Unsupported Message Type
ApplicationNotAvailable = 4
Application not available
ConditionallyRequiredFieldMissing = 5
Conditionally required field missing
NotAuthorized = 6
Not authorized
DeliverToFirmNotAvailableAtThisTime = 7
DeliverTo firm not available at this time
Trait Implementations§
Source§impl Clone for BusinessRejectReason
impl Clone for BusinessRejectReason
Source§fn clone(&self) -> BusinessRejectReason
fn clone(&self) -> BusinessRejectReason
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 BusinessRejectReason
impl Debug for BusinessRejectReason
Source§impl<'de> Deserialize<'de> for BusinessRejectReason
impl<'de> Deserialize<'de> for BusinessRejectReason
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for BusinessRejectReason
impl Hash for BusinessRejectReason
Source§impl PartialEq for BusinessRejectReason
impl PartialEq for BusinessRejectReason
Source§impl Serialize for BusinessRejectReason
impl Serialize for BusinessRejectReason
impl Copy for BusinessRejectReason
impl Eq for BusinessRejectReason
impl StructuralPartialEq for BusinessRejectReason
Auto Trait Implementations§
impl Freeze for BusinessRejectReason
impl RefUnwindSafe for BusinessRejectReason
impl Send for BusinessRejectReason
impl Sync for BusinessRejectReason
impl Unpin for BusinessRejectReason
impl UnwindSafe for BusinessRejectReason
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§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.