pub enum AvgPxIndicator {
NoAveragePricing,
TradeIsPartOfAnAveragePriceGroupIdentifiedByTheTradelinkid,
LastTradeIsTheAveragePriceGroupIdentifiedByTheTradelinkid,
}
Variants§
NoAveragePricing
Value “0”
TradeIsPartOfAnAveragePriceGroupIdentifiedByTheTradelinkid
Value “1”
LastTradeIsTheAveragePriceGroupIdentifiedByTheTradelinkid
Value “2”
Implementations§
Source§impl AvgPxIndicator
impl AvgPxIndicator
pub const fn from_bytes(input: &[u8]) -> Option<AvgPxIndicator>
pub const fn from_fix_str(input: &FixStr) -> Option<AvgPxIndicator>
pub const fn as_bytes(&self) -> &'static [u8] ⓘ
pub const fn as_fix_str(&self) -> &'static FixStr
Trait Implementations§
Source§impl Clone for AvgPxIndicator
impl Clone for AvgPxIndicator
Source§fn clone(&self) -> AvgPxIndicator
fn clone(&self) -> AvgPxIndicator
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 AvgPxIndicator
impl Debug for AvgPxIndicator
Source§impl Default for AvgPxIndicator
impl Default for AvgPxIndicator
Source§fn default() -> AvgPxIndicator
fn default() -> AvgPxIndicator
Returns the “default value” for a type. Read more
Source§impl From<AvgPxIndicator> for &'static [u8]
impl From<AvgPxIndicator> for &'static [u8]
Source§impl PartialEq for AvgPxIndicator
impl PartialEq for AvgPxIndicator
Source§impl ToFixString for AvgPxIndicator
impl ToFixString for AvgPxIndicator
fn to_fix_string(&self) -> FixString
Source§impl TryFrom<i64> for AvgPxIndicator
impl TryFrom<i64> for AvgPxIndicator
Source§type Error = ParseRejectReason
type Error = ParseRejectReason
The type returned in the event of a conversion error.
Source§fn try_from(input: Int) -> Result<AvgPxIndicator, ParseRejectReason>
fn try_from(input: Int) -> Result<AvgPxIndicator, ParseRejectReason>
Performs the conversion.
impl Copy for AvgPxIndicator
impl Eq for AvgPxIndicator
impl StructuralPartialEq for AvgPxIndicator
Auto Trait Implementations§
impl Freeze for AvgPxIndicator
impl RefUnwindSafe for AvgPxIndicator
impl Send for AvgPxIndicator
impl Sync for AvgPxIndicator
impl Unpin for AvgPxIndicator
impl UnwindSafe for AvgPxIndicator
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