pub enum TradeReportTransType {
    New,
    Cancel,
    Replace,
    Release,
    Reverse,
    CancelDueToBackOutOfTrade,
}Variants§
Implementations§
source§impl TradeReportTransType
 
impl TradeReportTransType
pub fn from_bytes(input: &[u8]) -> Option<TradeReportTransType>
pub fn from_fix_str(input: &FixStr) -> Option<TradeReportTransType>
pub fn as_bytes(&self) -> &'static [u8] ⓘ
pub 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 From<TradeReportTransType> for &'static [u8]
 
impl From<TradeReportTransType> for &'static [u8]
source§impl PartialEq<TradeReportTransType> for TradeReportTransType
 
impl PartialEq<TradeReportTransType> 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.