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