pub enum MassCancelRejectReason {
MassCancelNotSupported = 0,
InvalidOrUnknownSecurity = 1,
InvalidOrUnkownUnderlyingSecurity = 2,
InvalidOrUnknownProduct = 3,
InvalidOrUnknownCfiCode = 4,
InvalidOrUnknownSecurityType = 5,
InvalidOrUnknownTradingSession = 6,
Other = 99,
}Variants§
MassCancelNotSupported = 0
InvalidOrUnknownSecurity = 1
InvalidOrUnkownUnderlyingSecurity = 2
InvalidOrUnknownProduct = 3
InvalidOrUnknownCfiCode = 4
InvalidOrUnknownSecurityType = 5
InvalidOrUnknownTradingSession = 6
Other = 99
Implementations§
Source§impl MassCancelRejectReason
impl MassCancelRejectReason
pub const fn from_const_bytes(s: &[u8]) -> Result<Self, FixParseError>
Trait Implementations§
Source§impl Clone for MassCancelRejectReason
impl Clone for MassCancelRejectReason
Source§fn clone(&self) -> MassCancelRejectReason
fn clone(&self) -> MassCancelRejectReason
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 MassCancelRejectReason
impl Debug for MassCancelRejectReason
Source§impl FromStr for MassCancelRejectReason
impl FromStr for MassCancelRejectReason
Source§impl Hash for MassCancelRejectReason
impl Hash for MassCancelRejectReason
Source§impl PartialEq for MassCancelRejectReason
impl PartialEq for MassCancelRejectReason
impl Copy for MassCancelRejectReason
impl Eq for MassCancelRejectReason
impl StructuralPartialEq for MassCancelRejectReason
Auto Trait Implementations§
impl Freeze for MassCancelRejectReason
impl RefUnwindSafe for MassCancelRejectReason
impl Send for MassCancelRejectReason
impl Sync for MassCancelRejectReason
impl Unpin for MassCancelRejectReason
impl UnwindSafe for MassCancelRejectReason
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