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 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 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
impl Copy for QuoteAckStatus
impl Eq for QuoteAckStatus
impl StructuralPartialEq for QuoteAckStatus
Auto Trait Implementations§
impl Freeze for QuoteAckStatus
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