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