pub enum SecurityTradingEvent {
OrderImbalanceAuctionIsExtended,
TradingResumes,
PriceVolatilityInterruption,
ChangeOfTradingSession,
ChangeOfTradingSubsession,
ChangeOfSecurityTradingStatus,
ChangeOfBookType,
ChangeOfMarketDepth,
}
Variants§
OrderImbalanceAuctionIsExtended
Value “1”
TradingResumes
Value “2”
PriceVolatilityInterruption
Value “3”
ChangeOfTradingSession
Value “4”
ChangeOfTradingSubsession
Value “5”
ChangeOfSecurityTradingStatus
Value “6”
ChangeOfBookType
Value “7”
ChangeOfMarketDepth
Value “8”
Implementations§
Source§impl SecurityTradingEvent
impl SecurityTradingEvent
pub const fn from_bytes(input: &[u8]) -> Option<SecurityTradingEvent>
pub const fn from_fix_str(input: &FixStr) -> Option<SecurityTradingEvent>
pub const fn as_bytes(&self) -> &'static [u8] ⓘ
pub const fn as_fix_str(&self) -> &'static FixStr
Trait Implementations§
Source§impl Clone for SecurityTradingEvent
impl Clone for SecurityTradingEvent
Source§fn clone(&self) -> SecurityTradingEvent
fn clone(&self) -> SecurityTradingEvent
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 SecurityTradingEvent
impl Debug for SecurityTradingEvent
Source§impl Default for SecurityTradingEvent
impl Default for SecurityTradingEvent
Source§fn default() -> SecurityTradingEvent
fn default() -> SecurityTradingEvent
Returns the “default value” for a type. Read more
Source§impl From<SecurityTradingEvent> for &'static [u8]
impl From<SecurityTradingEvent> for &'static [u8]
Source§impl PartialEq for SecurityTradingEvent
impl PartialEq for SecurityTradingEvent
Source§impl ToFixString for SecurityTradingEvent
impl ToFixString for SecurityTradingEvent
fn to_fix_string(&self) -> FixString
Source§impl TryFrom<i64> for SecurityTradingEvent
impl TryFrom<i64> for SecurityTradingEvent
Source§type Error = ParseRejectReason
type Error = ParseRejectReason
The type returned in the event of a conversion error.
Source§fn try_from(input: Int) -> Result<SecurityTradingEvent, ParseRejectReason>
fn try_from(input: Int) -> Result<SecurityTradingEvent, ParseRejectReason>
Performs the conversion.
impl Copy for SecurityTradingEvent
impl Eq for SecurityTradingEvent
impl StructuralPartialEq for SecurityTradingEvent
Auto Trait Implementations§
impl Freeze for SecurityTradingEvent
impl RefUnwindSafe for SecurityTradingEvent
impl Send for SecurityTradingEvent
impl Sync for SecurityTradingEvent
impl Unpin for SecurityTradingEvent
impl UnwindSafe for SecurityTradingEvent
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