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.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 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 = ParseRejectReason
type Error = ParseRejectReason
The type returned in the event of a conversion error.
Source§fn try_from(input: Int) -> Result<StrikePriceBoundaryMethod, ParseRejectReason>
fn try_from(input: Int) -> Result<StrikePriceBoundaryMethod, ParseRejectReason>
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