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