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