pub enum MdEntryType {
Show 36 variants
Bid,
Offer,
Trade,
IndexValue,
OpeningPrice,
ClosingPrice,
SettlementPrice,
TradingSessionHighPrice,
TradingSessionLowPrice,
TradingSessionVwapPrice,
Imbalance,
TradeVolume,
OpenInterest,
CompositeUnderlyingPrice,
SimulatedSellPrice,
SimulatedBuyPrice,
MarginRate,
MidPrice,
EmptyBook,
SettleHighPrice,
SettleLowPrice,
PriorSettlePrice,
SessionHighBid,
SessionLowOffer,
EarlyPrices,
AuctionClearingPrice,
SwapValueFactor,
DailyValueAdjustmentForLongPositions,
CumulativeValueAdjustmentForLongPositions,
DailyValueAdjustmentForShortPositions,
CumulativeValueAdjustmentForShortPositions,
RecoveryRate,
RecoveryRateForLong,
RecoveryRateForShort,
FixingPrice,
CashRate,
}
Variants§
Bid
Value “0”
Offer
Value “1”
Trade
Value “2”
IndexValue
Value “3”
OpeningPrice
Value “4”
ClosingPrice
Value “5”
SettlementPrice
Value “6”
TradingSessionHighPrice
Value “7”
TradingSessionLowPrice
Value “8”
TradingSessionVwapPrice
Value “9”
Imbalance
Value “A”
TradeVolume
Value “B”
OpenInterest
Value “C”
CompositeUnderlyingPrice
Value “D”
SimulatedSellPrice
Value “E”
SimulatedBuyPrice
Value “F”
MarginRate
Value “G”
MidPrice
Value “H”
EmptyBook
Value “J”
SettleHighPrice
Value “K”
SettleLowPrice
Value “L”
PriorSettlePrice
Value “M”
SessionHighBid
Value “N”
SessionLowOffer
Value “O”
EarlyPrices
Value “P”
AuctionClearingPrice
Value “Q”
SwapValueFactor
Value “S”
DailyValueAdjustmentForLongPositions
Value “R”
CumulativeValueAdjustmentForLongPositions
Value “T”
DailyValueAdjustmentForShortPositions
Value “U”
CumulativeValueAdjustmentForShortPositions
Value “V”
RecoveryRate
Value “Y”
RecoveryRateForLong
Value “Z”
RecoveryRateForShort
Value “a”
FixingPrice
Value “W”
CashRate
Value “X”
Implementations§
Source§impl MdEntryType
impl MdEntryType
pub const fn from_bytes(input: &[u8]) -> Option<MdEntryType>
pub const fn from_fix_str(input: &FixStr) -> Option<MdEntryType>
pub const fn as_bytes(&self) -> &'static [u8] ⓘ
pub const fn as_fix_str(&self) -> &'static FixStr
Trait Implementations§
Source§impl Clone for MdEntryType
impl Clone for MdEntryType
Source§fn clone(&self) -> MdEntryType
fn clone(&self) -> MdEntryType
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 MdEntryType
impl Debug for MdEntryType
Source§impl Default for MdEntryType
impl Default for MdEntryType
Source§fn default() -> MdEntryType
fn default() -> MdEntryType
Returns the “default value” for a type. Read more
Source§impl From<MdEntryType> for &'static [u8]
impl From<MdEntryType> for &'static [u8]
Source§impl PartialEq for MdEntryType
impl PartialEq for MdEntryType
Source§impl ToFixString for MdEntryType
impl ToFixString for MdEntryType
fn to_fix_string(&self) -> FixString
Source§impl TryFrom<u8> for MdEntryType
impl TryFrom<u8> for MdEntryType
Source§type Error = ParseRejectReason
type Error = ParseRejectReason
The type returned in the event of a conversion error.
Source§fn try_from(input: Char) -> Result<MdEntryType, ParseRejectReason>
fn try_from(input: Char) -> Result<MdEntryType, ParseRejectReason>
Performs the conversion.
impl Copy for MdEntryType
impl Eq for MdEntryType
impl StructuralPartialEq for MdEntryType
Auto Trait Implementations§
impl Freeze for MdEntryType
impl RefUnwindSafe for MdEntryType
impl Send for MdEntryType
impl Sync for MdEntryType
impl Unpin for MdEntryType
impl UnwindSafe for MdEntryType
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