pub enum QuotePriceType {
Percent = 1,
PerShare = 2,
FixedAmount = 3,
Discount = 4,
Premium = 5,
Spread = 6,
TedPrice = 7,
TedYield = 8,
YieldSpread = 9,
Yield = 10,
}
Variants§
Percent = 1
FixedAmount = 3
Discount = 4
Premium = 5
Spread = 6
TedPrice = 7
TedYield = 8
YieldSpread = 9
Yield = 10
Implementations§
Source§impl QuotePriceType
impl QuotePriceType
pub const fn from_const_bytes(s: &[u8]) -> Result<Self, FixParseError>
Trait Implementations§
Source§impl Clone for QuotePriceType
impl Clone for QuotePriceType
Source§fn clone(&self) -> QuotePriceType
fn clone(&self) -> QuotePriceType
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 QuotePriceType
impl Debug for QuotePriceType
Source§impl FromStr for QuotePriceType
impl FromStr for QuotePriceType
Source§impl Hash for QuotePriceType
impl Hash for QuotePriceType
Source§impl IntoFixValue for QuotePriceType
impl IntoFixValue for QuotePriceType
Source§impl PartialEq for QuotePriceType
impl PartialEq for QuotePriceType
impl Copy for QuotePriceType
impl Eq for QuotePriceType
impl StructuralPartialEq for QuotePriceType
Auto Trait Implementations§
impl Freeze for QuotePriceType
impl RefUnwindSafe for QuotePriceType
impl Send for QuotePriceType
impl Sync for QuotePriceType
impl Unpin for QuotePriceType
impl UnwindSafe for QuotePriceType
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