pub enum TradeReportTransType {
New,
Cancel,
Replace,
Release,
Reverse,
CancelDueToBackOutOfTrade,
}
Variants§
New
Value “0”
Cancel
Value “1”
Replace
Value “2”
Release
Value “3”
Reverse
Value “4”
CancelDueToBackOutOfTrade
Value “5”
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§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
Source§type Error = ParseRejectReason
type Error = ParseRejectReason
The type returned in the event of a conversion error.
Source§fn try_from(input: Int) -> Result<TradeReportTransType, ParseRejectReason>
fn try_from(input: Int) -> Result<TradeReportTransType, ParseRejectReason>
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