pub enum TradeReportRejectReason {
Successful = 0,
InvalidPartyOnformation = 1,
UnknownInstrument = 2,
UnauthorizedToReportTrades = 3,
InvalidTradeType = 4,
Other = 99,
}Variants§
Implementations§
Source§impl TradeReportRejectReason
impl TradeReportRejectReason
pub const fn from_const_bytes(s: &[u8]) -> Result<Self, FixParseError>
Trait Implementations§
Source§impl Clone for TradeReportRejectReason
impl Clone for TradeReportRejectReason
Source§fn clone(&self) -> TradeReportRejectReason
fn clone(&self) -> TradeReportRejectReason
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for TradeReportRejectReason
Source§impl Debug for TradeReportRejectReason
impl Debug for TradeReportRejectReason
impl Eq for TradeReportRejectReason
Source§impl FromStr for TradeReportRejectReason
impl FromStr for TradeReportRejectReason
Source§impl Hash for TradeReportRejectReason
impl Hash for TradeReportRejectReason
Source§impl PartialEq for TradeReportRejectReason
impl PartialEq for TradeReportRejectReason
Source§fn eq(&self, other: &TradeReportRejectReason) -> bool
fn eq(&self, other: &TradeReportRejectReason) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TradeReportRejectReason
Auto Trait Implementations§
impl Freeze for TradeReportRejectReason
impl RefUnwindSafe for TradeReportRejectReason
impl Send for TradeReportRejectReason
impl Sync for TradeReportRejectReason
impl Unpin for TradeReportRejectReason
impl UnsafeUnpin for TradeReportRejectReason
impl UnwindSafe for TradeReportRejectReason
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