pub enum StrategyParameterType {
Show 24 variants
Int = 1,
Length = 2,
NumInGroup = 3,
SeqNum = 4,
TagNum = 5,
Float = 6,
Qty = 7,
Price = 8,
PriceOffset = 9,
Amt = 10,
Percentage = 11,
Char = 12,
Boolean = 13,
String = 14,
MultipleCharValue = 15,
Currency = 16,
Exchange = 17,
MonthYear = 18,
UtcTimestamp = 19,
UtcTimeOnly = 20,
LocalMktDate = 21,
UtcDateOnly = 22,
Data = 23,
MultipleStringValue = 24,
}
Variants§
Int = 1
Length = 2
NumInGroup = 3
SeqNum = 4
TagNum = 5
Float = 6
Qty = 7
Price = 8
PriceOffset = 9
Amt = 10
Percentage = 11
Char = 12
Boolean = 13
String = 14
MultipleCharValue = 15
Currency = 16
Exchange = 17
MonthYear = 18
UtcTimestamp = 19
UtcTimeOnly = 20
LocalMktDate = 21
UtcDateOnly = 22
Data = 23
MultipleStringValue = 24
Implementations§
Source§impl StrategyParameterType
impl StrategyParameterType
pub const fn from_const_bytes(s: &[u8]) -> Result<Self, FixParseError>
Trait Implementations§
Source§impl Clone for StrategyParameterType
impl Clone for StrategyParameterType
Source§fn clone(&self) -> StrategyParameterType
fn clone(&self) -> StrategyParameterType
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 StrategyParameterType
impl Debug for StrategyParameterType
Source§impl FromStr for StrategyParameterType
impl FromStr for StrategyParameterType
Source§impl Hash for StrategyParameterType
impl Hash for StrategyParameterType
Source§impl IntoFixValue for StrategyParameterType
impl IntoFixValue for StrategyParameterType
Source§impl PartialEq for StrategyParameterType
impl PartialEq for StrategyParameterType
impl Copy for StrategyParameterType
impl Eq for StrategyParameterType
impl StructuralPartialEq for StrategyParameterType
Auto Trait Implementations§
impl Freeze for StrategyParameterType
impl RefUnwindSafe for StrategyParameterType
impl Send for StrategyParameterType
impl Sync for StrategyParameterType
impl Unpin for StrategyParameterType
impl UnwindSafe for StrategyParameterType
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