pub enum MassActionScope {
AllOrdersForASecurity,
AllOrdersForAnUnderlyingSecurity,
AllOrdersForAProduct,
AllOrdersForACficode,
AllOrdersForASecuritytype,
AllOrdersForATradingSession,
AllOrders,
AllOrdersForAMarket,
AllOrdersForAMarketSegment,
AllOrdersForASecurityGroup,
CancelForSecurityIssuer,
CancelForIssuerOfUnderlyingSecurity,
}
Variants§
AllOrdersForASecurity
Value “1”
AllOrdersForAnUnderlyingSecurity
Value “2”
AllOrdersForAProduct
Value “3”
AllOrdersForACficode
Value “4”
AllOrdersForASecuritytype
Value “5”
AllOrdersForATradingSession
Value “6”
AllOrders
Value “7”
AllOrdersForAMarket
Value “8”
AllOrdersForAMarketSegment
Value “9”
AllOrdersForASecurityGroup
Value “10”
CancelForSecurityIssuer
Value “11”
CancelForIssuerOfUnderlyingSecurity
Value “12”
Implementations§
Source§impl MassActionScope
impl MassActionScope
pub const fn from_bytes(input: &[u8]) -> Option<MassActionScope>
pub const fn from_fix_str(input: &FixStr) -> Option<MassActionScope>
pub const fn as_bytes(&self) -> &'static [u8] ⓘ
pub const fn as_fix_str(&self) -> &'static FixStr
Trait Implementations§
Source§impl Clone for MassActionScope
impl Clone for MassActionScope
Source§fn clone(&self) -> MassActionScope
fn clone(&self) -> MassActionScope
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 MassActionScope
impl Debug for MassActionScope
Source§impl Default for MassActionScope
impl Default for MassActionScope
Source§fn default() -> MassActionScope
fn default() -> MassActionScope
Returns the “default value” for a type. Read more
Source§impl From<MassActionScope> for &'static [u8]
impl From<MassActionScope> for &'static [u8]
Source§impl PartialEq for MassActionScope
impl PartialEq for MassActionScope
Source§impl ToFixString for MassActionScope
impl ToFixString for MassActionScope
fn to_fix_string(&self) -> FixString
Source§impl TryFrom<i64> for MassActionScope
impl TryFrom<i64> for MassActionScope
Source§type Error = ParseRejectReason
type Error = ParseRejectReason
The type returned in the event of a conversion error.
Source§fn try_from(input: i64) -> Result<MassActionScope, ParseRejectReason>
fn try_from(input: i64) -> Result<MassActionScope, ParseRejectReason>
Performs the conversion.
impl Copy for MassActionScope
impl Eq for MassActionScope
impl StructuralPartialEq for MassActionScope
Auto Trait Implementations§
impl Freeze for MassActionScope
impl RefUnwindSafe for MassActionScope
impl Send for MassActionScope
impl Sync for MassActionScope
impl Unpin for MassActionScope
impl UnwindSafe for MassActionScope
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