pub enum PegPriceType {
LastPeg = 1,
MidPricePeg = 2,
OpeningPeg = 3,
MarketPeg = 4,
PrimaryPeg = 5,
FixedPegToLocalBestBidOrOfferAtTimeOfOrder = 6,
PegToVwap = 7,
TrailingStopPeg = 8,
PegToLimitPrice = 9,
}Variants§
LastPeg = 1
MidPricePeg = 2
OpeningPeg = 3
MarketPeg = 4
PrimaryPeg = 5
FixedPegToLocalBestBidOrOfferAtTimeOfOrder = 6
PegToVwap = 7
TrailingStopPeg = 8
PegToLimitPrice = 9
Implementations§
Source§impl PegPriceType
impl PegPriceType
pub const fn from_const_bytes(s: &[u8]) -> Result<Self, FixParseError>
Trait Implementations§
Source§impl Clone for PegPriceType
impl Clone for PegPriceType
Source§fn clone(&self) -> PegPriceType
fn clone(&self) -> PegPriceType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PegPriceType
Source§impl Debug for PegPriceType
impl Debug for PegPriceType
impl Eq for PegPriceType
Source§impl FromStr for PegPriceType
impl FromStr for PegPriceType
Source§impl Hash for PegPriceType
impl Hash for PegPriceType
Source§impl IntoFixValue for PegPriceType
impl IntoFixValue for PegPriceType
Source§impl PartialEq for PegPriceType
impl PartialEq for PegPriceType
Source§fn eq(&self, other: &PegPriceType) -> bool
fn eq(&self, other: &PegPriceType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PegPriceType
Auto Trait Implementations§
impl Freeze for PegPriceType
impl RefUnwindSafe for PegPriceType
impl Send for PegPriceType
impl Sync for PegPriceType
impl Unpin for PegPriceType
impl UnsafeUnpin for PegPriceType
impl UnwindSafe for PegPriceType
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