pub enum QuoteAckStatus {
Accepted = 0,
CancelForSymbol = 1,
CanceledForSecurityType = 2,
CanceledForUnderlying = 3,
CanceledAll = 4,
Rejected = 5,
}Variants§
Accepted = 0
CancelForSymbol = 1
CanceledForSecurityType = 2
CanceledForUnderlying = 3
CanceledAll = 4
Rejected = 5
Implementations§
source§impl QuoteAckStatus
impl QuoteAckStatus
pub const fn from_const_bytes(s: &[u8]) -> Result<Self, FixParseError>
Trait Implementations§
source§impl Clone for QuoteAckStatus
impl Clone for QuoteAckStatus
source§fn clone(&self) -> QuoteAckStatus
fn clone(&self) -> QuoteAckStatus
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 QuoteAckStatus
impl Debug for QuoteAckStatus
source§impl FromStr for QuoteAckStatus
impl FromStr for QuoteAckStatus
source§impl Hash for QuoteAckStatus
impl Hash for QuoteAckStatus
source§impl IntoFixValue for QuoteAckStatus
impl IntoFixValue for QuoteAckStatus
source§impl PartialEq for QuoteAckStatus
impl PartialEq for QuoteAckStatus
source§fn eq(&self, other: &QuoteAckStatus) -> bool
fn eq(&self, other: &QuoteAckStatus) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for QuoteAckStatus
impl Eq for QuoteAckStatus
impl StructuralPartialEq for QuoteAckStatus
Auto Trait Implementations§
impl RefUnwindSafe for QuoteAckStatus
impl Send for QuoteAckStatus
impl Sync for QuoteAckStatus
impl Unpin for QuoteAckStatus
impl UnwindSafe for QuoteAckStatus
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