pub enum ExecPriceType {
BidPrice,
CreationPrice,
CreationPricePlusAdjustmentPercent,
CreationPricePlusAdjustmentAmount,
OfferPrice,
OfferPriceMinusAdjustmentPercent,
OfferPriceMinusAdjustmentAmount,
SinglePrice,
}
Variants§
BidPrice
CreationPrice
CreationPricePlusAdjustmentPercent
CreationPricePlusAdjustmentAmount
OfferPrice
OfferPriceMinusAdjustmentPercent
OfferPriceMinusAdjustmentAmount
SinglePrice
Implementations§
Source§impl ExecPriceType
impl ExecPriceType
pub const fn from_const_bytes(s: &[u8]) -> Result<Self, FixParseError>
Trait Implementations§
Source§impl Clone for ExecPriceType
impl Clone for ExecPriceType
Source§fn clone(&self) -> ExecPriceType
fn clone(&self) -> ExecPriceType
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 ExecPriceType
impl Debug for ExecPriceType
Source§impl FromStr for ExecPriceType
impl FromStr for ExecPriceType
Source§impl Hash for ExecPriceType
impl Hash for ExecPriceType
Source§impl IntoFixValue for ExecPriceType
impl IntoFixValue for ExecPriceType
Source§impl PartialEq for ExecPriceType
impl PartialEq for ExecPriceType
impl Copy for ExecPriceType
impl Eq for ExecPriceType
impl StructuralPartialEq for ExecPriceType
Auto Trait Implementations§
impl Freeze for ExecPriceType
impl RefUnwindSafe for ExecPriceType
impl Send for ExecPriceType
impl Sync for ExecPriceType
impl Unpin for ExecPriceType
impl UnwindSafe for ExecPriceType
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