pub enum PriceType {
Show 18 variants
Percentage = 1,
PerUnit = 2,
FixedAmount = 3,
Discount = 4,
Premium = 5,
Spread = 6,
TedPrice = 7,
TedYield = 8,
Yield = 9,
FixedCabinetTradePrice = 10,
VariableCabinetTradePrice = 11,
ProductTicksInHalfs = 13,
ProductTicksInFourths = 14,
ProductTicksInEights = 15,
ProductTicksInSixteenths = 16,
ProductTicksInThirtySeconds = 17,
ProductTicksInSixtyForths = 18,
ProductTicksInOneTwentyEights = 19,
}
Variants§
Percentage = 1
PerUnit = 2
FixedAmount = 3
Discount = 4
Premium = 5
Spread = 6
TedPrice = 7
TedYield = 8
Yield = 9
FixedCabinetTradePrice = 10
VariableCabinetTradePrice = 11
ProductTicksInHalfs = 13
ProductTicksInFourths = 14
ProductTicksInEights = 15
ProductTicksInSixteenths = 16
ProductTicksInThirtySeconds = 17
ProductTicksInSixtyForths = 18
ProductTicksInOneTwentyEights = 19
Implementations§
Source§impl PriceType
impl PriceType
pub const fn from_const_bytes(s: &[u8]) -> Result<Self, FixParseError>
Trait Implementations§
Source§impl IntoFixValue for PriceType
impl IntoFixValue for PriceType
impl Copy for PriceType
impl Eq for PriceType
impl StructuralPartialEq for PriceType
Auto Trait Implementations§
impl Freeze for PriceType
impl RefUnwindSafe for PriceType
impl Send for PriceType
impl Sync for PriceType
impl Unpin for PriceType
impl UnwindSafe for PriceType
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