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