pub enum StrikePriceDeterminationMethod {
    FixedStrike,
    StrikeSetAtExpirationToUnderlyingOrOtherValue,
    StrikeSetToAverageOfUnderlyingSettlementPriceAcrossTheLifeOfTheOption,
    StrikeSetToOptimalValue,
}Variants§
FixedStrike
StrikeSetAtExpirationToUnderlyingOrOtherValue
StrikeSetToAverageOfUnderlyingSettlementPriceAcrossTheLifeOfTheOption
StrikeSetToOptimalValue
Implementations§
source§impl StrikePriceDeterminationMethod
 
impl StrikePriceDeterminationMethod
pub fn from_bytes(input: &[u8]) -> Option<StrikePriceDeterminationMethod>
pub fn from_fix_str(input: &FixStr) -> Option<StrikePriceDeterminationMethod>
pub fn as_bytes(&self) -> &'static [u8] ⓘ
pub fn as_fix_str(&self) -> &'static FixStr
Trait Implementations§
source§impl Clone for StrikePriceDeterminationMethod
 
impl Clone for StrikePriceDeterminationMethod
source§fn clone(&self) -> StrikePriceDeterminationMethod
 
fn clone(&self) -> StrikePriceDeterminationMethod
Returns a copy 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 From<StrikePriceDeterminationMethod> for &'static [u8]
 
impl From<StrikePriceDeterminationMethod> for &'static [u8]
source§impl PartialEq<StrikePriceDeterminationMethod> for StrikePriceDeterminationMethod
 
impl PartialEq<StrikePriceDeterminationMethod> for StrikePriceDeterminationMethod
source§fn eq(&self, other: &StrikePriceDeterminationMethod) -> bool
 
fn eq(&self, other: &StrikePriceDeterminationMethod) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl ToFixString for StrikePriceDeterminationMethod
 
impl ToFixString for StrikePriceDeterminationMethod
fn to_fix_string(&self) -> FixString
source§impl TryFrom<i64> for StrikePriceDeterminationMethod
 
impl TryFrom<i64> for StrikePriceDeterminationMethod
§type Error = SessionRejectReason
 
type Error = SessionRejectReason
The type returned in the event of a conversion error.
source§fn try_from(
    input: Int
) -> Result<StrikePriceDeterminationMethod, SessionRejectReason>
 
fn try_from(
    input: Int
) -> Result<StrikePriceDeterminationMethod, SessionRejectReason>
Performs the conversion.