pub enum MultilegPriceMethod {
    NetPrice,
    ReversedNetPrice,
    YieldDifference,
    Individual,
    ContractWeightedAveragePrice,
    MultipliedPrice,
}Variants§
Implementations§
source§impl MultilegPriceMethod
 
impl MultilegPriceMethod
pub fn from_bytes(input: &[u8]) -> Option<MultilegPriceMethod>
pub fn from_fix_str(input: &FixStr) -> Option<MultilegPriceMethod>
pub fn as_bytes(&self) -> &'static [u8] ⓘ
pub fn as_fix_str(&self) -> &'static FixStr
Trait Implementations§
source§impl Clone for MultilegPriceMethod
 
impl Clone for MultilegPriceMethod
source§fn clone(&self) -> MultilegPriceMethod
 
fn clone(&self) -> MultilegPriceMethod
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 MultilegPriceMethod
 
impl Debug for MultilegPriceMethod
source§impl Default for MultilegPriceMethod
 
impl Default for MultilegPriceMethod
source§fn default() -> MultilegPriceMethod
 
fn default() -> MultilegPriceMethod
Returns the “default value” for a type. Read more
source§impl From<MultilegPriceMethod> for &'static [u8]
 
impl From<MultilegPriceMethod> for &'static [u8]
source§impl PartialEq<MultilegPriceMethod> for MultilegPriceMethod
 
impl PartialEq<MultilegPriceMethod> for MultilegPriceMethod
source§fn eq(&self, other: &MultilegPriceMethod) -> bool
 
fn eq(&self, other: &MultilegPriceMethod) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl ToFixString for MultilegPriceMethod
 
impl ToFixString for MultilegPriceMethod
fn to_fix_string(&self) -> FixString
source§impl TryFrom<i64> for MultilegPriceMethod
 
impl TryFrom<i64> for MultilegPriceMethod
§type Error = SessionRejectReason
 
type Error = SessionRejectReason
The type returned in the event of a conversion error.
source§fn try_from(input: Int) -> Result<MultilegPriceMethod, SessionRejectReason>
 
fn try_from(input: Int) -> Result<MultilegPriceMethod, SessionRejectReason>
Performs the conversion.
impl Copy for MultilegPriceMethod
impl Eq for MultilegPriceMethod
impl StructuralEq for MultilegPriceMethod
impl StructuralPartialEq for MultilegPriceMethod
Auto Trait Implementations§
impl RefUnwindSafe for MultilegPriceMethod
impl Send for MultilegPriceMethod
impl Sync for MultilegPriceMethod
impl Unpin for MultilegPriceMethod
impl UnwindSafe for MultilegPriceMethod
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