pub enum PriceType {
Show 18 variants
Percentage,
PerUnit,
FixedAmount,
Discount,
Premium,
Spread,
TedPrice,
TedYield,
Yield,
FixedCabinetTradePrice,
VariableCabinetTradePrice,
ProductTicksInHalfs,
ProductTicksInFourths,
ProductTicksInEights,
ProductTicksInSixteenths,
ProductTicksInThirtySeconds,
ProductTicksInSixtyForths,
ProductTicksInOneTwentyEights,
}
Variants§
Percentage
Value “1”
PerUnit
Value “2”
FixedAmount
Value “3”
Discount
Value “4”
Premium
Value “5”
Spread
Value “6”
TedPrice
Value “7”
TedYield
Value “8”
Yield
Value “9”
FixedCabinetTradePrice
Value “10”
VariableCabinetTradePrice
Value “11”
ProductTicksInHalfs
Value “13”
ProductTicksInFourths
Value “14”
ProductTicksInEights
Value “15”
ProductTicksInSixteenths
Value “16”
ProductTicksInThirtySeconds
Value “17”
ProductTicksInSixtyForths
Value “18”
ProductTicksInOneTwentyEights
Value “19”
Implementations§
Trait Implementations§
Source§impl ToFixString for PriceType
impl ToFixString for PriceType
fn to_fix_string(&self) -> FixString
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