pub enum BusinessRejectReason {
UnsupportedMessageType = 3,
DeliverToFirmNotAvailableAtThisTime = 7,
ApplicationNotAvailable = 4,
NotAuthorized = 6,
Other = 0,
ConditionallyRequiredFieldMissing = 5,
UnknownId = 1,
UnknownSecurity = 2,
}
Variants§
UnsupportedMessageType = 3
DeliverToFirmNotAvailableAtThisTime = 7
ApplicationNotAvailable = 4
NotAuthorized = 6
Other = 0
ConditionallyRequiredFieldMissing = 5
UnknownId = 1
UnknownSecurity = 2
Implementations§
source§impl BusinessRejectReason
impl BusinessRejectReason
pub const fn from_const_bytes(s: &[u8]) -> Result<Self, FixParseError>
Trait Implementations§
source§impl Clone for BusinessRejectReason
impl Clone for BusinessRejectReason
source§fn clone(&self) -> BusinessRejectReason
fn clone(&self) -> BusinessRejectReason
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 BusinessRejectReason
impl Debug for BusinessRejectReason
source§impl FromStr for BusinessRejectReason
impl FromStr for BusinessRejectReason
source§impl Hash for BusinessRejectReason
impl Hash for BusinessRejectReason
source§impl IntoFixValue for BusinessRejectReason
impl IntoFixValue for BusinessRejectReason
source§impl PartialEq for BusinessRejectReason
impl PartialEq for BusinessRejectReason
source§fn eq(&self, other: &BusinessRejectReason) -> bool
fn eq(&self, other: &BusinessRejectReason) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for BusinessRejectReason
impl Eq for BusinessRejectReason
impl StructuralPartialEq for BusinessRejectReason
Auto Trait Implementations§
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