pub enum OrderRestrictions {
Show 15 variants
ProgramTrade,
IndexArbitrage,
NonIndexArbitrage,
CompetingMarketMaker,
ActingAsMarketMakerOrSpecialistInTheSecurity,
ActingAsMarketMakerOrSpecialistInTheUnderlyingSecurityOfADerivativeSecurity,
ForeignEntity,
ExternalMarketParticipant,
ExternalInterConnectedMarketLinkage,
RisklessArbitrage,
IssuerHolding,
IssuePriceStabilization,
NonAlgorithmic,
Algorithmic,
Cross,
}
Variants§
ProgramTrade
Value “1”
IndexArbitrage
Value “2”
NonIndexArbitrage
Value “3”
CompetingMarketMaker
Value “4”
ActingAsMarketMakerOrSpecialistInTheSecurity
Value “5”
ActingAsMarketMakerOrSpecialistInTheUnderlyingSecurityOfADerivativeSecurity
Value “6”
ForeignEntity
Value “7”
ExternalMarketParticipant
Value “8”
ExternalInterConnectedMarketLinkage
Value “9”
RisklessArbitrage
Value “A”
IssuerHolding
Value “B”
IssuePriceStabilization
Value “C”
NonAlgorithmic
Value “D”
Algorithmic
Value “E”
Cross
Value “F”
Implementations§
Source§impl OrderRestrictions
impl OrderRestrictions
pub const fn from_bytes(input: &[u8]) -> Option<OrderRestrictions>
pub const fn from_fix_str(input: &FixStr) -> Option<OrderRestrictions>
pub const fn as_bytes(&self) -> &'static [u8] ⓘ
pub const fn as_fix_str(&self) -> &'static FixStr
Trait Implementations§
Source§impl Clone for OrderRestrictions
impl Clone for OrderRestrictions
Source§fn clone(&self) -> OrderRestrictions
fn clone(&self) -> OrderRestrictions
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 OrderRestrictions
impl Debug for OrderRestrictions
Source§impl Default for OrderRestrictions
impl Default for OrderRestrictions
Source§fn default() -> OrderRestrictions
fn default() -> OrderRestrictions
Returns the “default value” for a type. Read more
Source§impl From<OrderRestrictions> for &'static [u8]
impl From<OrderRestrictions> for &'static [u8]
Source§impl PartialEq for OrderRestrictions
impl PartialEq for OrderRestrictions
Source§impl ToFixString for OrderRestrictions
impl ToFixString for OrderRestrictions
fn to_fix_string(&self) -> FixString
Source§impl TryFrom<u8> for OrderRestrictions
impl TryFrom<u8> for OrderRestrictions
Source§type Error = ParseRejectReason
type Error = ParseRejectReason
The type returned in the event of a conversion error.
Source§fn try_from(input: Char) -> Result<OrderRestrictions, ParseRejectReason>
fn try_from(input: Char) -> Result<OrderRestrictions, ParseRejectReason>
Performs the conversion.
impl Copy for OrderRestrictions
impl Eq for OrderRestrictions
impl StructuralPartialEq for OrderRestrictions
Auto Trait Implementations§
impl Freeze for OrderRestrictions
impl RefUnwindSafe for OrderRestrictions
impl Send for OrderRestrictions
impl Sync for OrderRestrictions
impl Unpin for OrderRestrictions
impl UnwindSafe for OrderRestrictions
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