pub enum StrikePriceBoundaryMethod {
    LessThanUnderlyingPriceIsInTheMoney,
    LessThanOrEqualToTheUnderlyingPriceIsInTheMoney,
    EqualToTheUnderlyingPriceIsInTheMoney,
    GreaterThanOrEqualToUnderlyingPriceIsInTheMoney,
    GreaterThanUnderlyingIsInTheMoney,
}Variants§
LessThanUnderlyingPriceIsInTheMoney
Value “1”
LessThanOrEqualToTheUnderlyingPriceIsInTheMoney
Value “2”
EqualToTheUnderlyingPriceIsInTheMoney
Value “3”
GreaterThanOrEqualToUnderlyingPriceIsInTheMoney
Value “4”
GreaterThanUnderlyingIsInTheMoney
Value “5”
Implementations§
source§impl StrikePriceBoundaryMethod
 
impl StrikePriceBoundaryMethod
pub const fn from_bytes(input: &[u8]) -> Option<StrikePriceBoundaryMethod>
pub const fn from_fix_str(input: &FixStr) -> Option<StrikePriceBoundaryMethod>
pub const fn as_bytes(&self) -> &'static [u8] ⓘ
pub const fn as_fix_str(&self) -> &'static FixStr
Trait Implementations§
source§impl Clone for StrikePriceBoundaryMethod
 
impl Clone for StrikePriceBoundaryMethod
source§fn clone(&self) -> StrikePriceBoundaryMethod
 
fn clone(&self) -> StrikePriceBoundaryMethod
Returns a copy of the value. Read more
1.6.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 StrikePriceBoundaryMethod
 
impl Debug for StrikePriceBoundaryMethod
source§impl Default for StrikePriceBoundaryMethod
 
impl Default for StrikePriceBoundaryMethod
source§fn default() -> StrikePriceBoundaryMethod
 
fn default() -> StrikePriceBoundaryMethod
Returns the “default value” for a type. Read more
source§impl From<StrikePriceBoundaryMethod> for &'static [u8]
 
impl From<StrikePriceBoundaryMethod> for &'static [u8]
source§impl ToFixString for StrikePriceBoundaryMethod
 
impl ToFixString for StrikePriceBoundaryMethod
fn to_fix_string(&self) -> FixString
source§impl TryFrom<i64> for StrikePriceBoundaryMethod
 
impl TryFrom<i64> for StrikePriceBoundaryMethod
source§type Error = SessionRejectReason
 
type Error = SessionRejectReason
The type returned in the event of a conversion error.
source§fn try_from(
    input: Int,
) -> Result<StrikePriceBoundaryMethod, SessionRejectReason>
 
fn try_from( input: Int, ) -> Result<StrikePriceBoundaryMethod, SessionRejectReason>
Performs the conversion.
impl Copy for StrikePriceBoundaryMethod
impl Eq for StrikePriceBoundaryMethod
impl StructuralPartialEq for StrikePriceBoundaryMethod
Auto Trait Implementations§
impl Freeze for StrikePriceBoundaryMethod
impl RefUnwindSafe for StrikePriceBoundaryMethod
impl Send for StrikePriceBoundaryMethod
impl Sync for StrikePriceBoundaryMethod
impl Unpin for StrikePriceBoundaryMethod
impl UnwindSafe for StrikePriceBoundaryMethod
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
source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
 
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)