pub enum MassCancelResponse {
Show 13 variants
    CancelRequestRejected,
    CancelOrdersForASecurity,
    CancelOrdersForAnUnderlyingSecurity,
    CancelOrdersForAProduct,
    CancelOrdersForACficode,
    CancelOrdersForASecuritytype,
    CancelOrdersForATradingSession,
    CancelAllOrders,
    CancelOrdersForAMarket,
    CancelOrdersForAMarketSegment,
    CancelOrdersForASecurityGroup,
    CancelOrdersForASecuritiesIssuer,
    CancelOrdersForIssuerOfUnderlyingSecurity,
}Variants§
CancelRequestRejected
CancelOrdersForASecurity
CancelOrdersForAnUnderlyingSecurity
CancelOrdersForAProduct
CancelOrdersForACficode
CancelOrdersForASecuritytype
CancelOrdersForATradingSession
CancelAllOrders
CancelOrdersForAMarket
CancelOrdersForAMarketSegment
CancelOrdersForASecurityGroup
CancelOrdersForASecuritiesIssuer
CancelOrdersForIssuerOfUnderlyingSecurity
Implementations§
source§impl MassCancelResponse
 
impl MassCancelResponse
pub fn from_bytes(input: &[u8]) -> Option<MassCancelResponse>
pub fn from_fix_str(input: &FixStr) -> Option<MassCancelResponse>
pub fn as_bytes(&self) -> &'static [u8] ⓘ
pub fn as_fix_str(&self) -> &'static FixStr
Trait Implementations§
source§impl Clone for MassCancelResponse
 
impl Clone for MassCancelResponse
source§fn clone(&self) -> MassCancelResponse
 
fn clone(&self) -> MassCancelResponse
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 MassCancelResponse
 
impl Debug for MassCancelResponse
source§impl From<MassCancelResponse> for &'static [u8]
 
impl From<MassCancelResponse> for &'static [u8]
source§impl PartialEq<MassCancelResponse> for MassCancelResponse
 
impl PartialEq<MassCancelResponse> for MassCancelResponse
source§fn eq(&self, other: &MassCancelResponse) -> bool
 
fn eq(&self, other: &MassCancelResponse) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl ToFixString for MassCancelResponse
 
impl ToFixString for MassCancelResponse
fn to_fix_string(&self) -> FixString
source§impl TryFrom<u8> for MassCancelResponse
 
impl TryFrom<u8> for MassCancelResponse
§type Error = SessionRejectReason
 
type Error = SessionRejectReason
The type returned in the event of a conversion error.
source§fn try_from(input: Char) -> Result<MassCancelResponse, SessionRejectReason>
 
fn try_from(input: Char) -> Result<MassCancelResponse, SessionRejectReason>
Performs the conversion.
impl Copy for MassCancelResponse
impl Eq for MassCancelResponse
impl StructuralEq for MassCancelResponse
impl StructuralPartialEq for MassCancelResponse
Auto Trait Implementations§
impl RefUnwindSafe for MassCancelResponse
impl Send for MassCancelResponse
impl Sync for MassCancelResponse
impl Unpin for MassCancelResponse
impl UnwindSafe for MassCancelResponse
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