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