pub enum TradeReportType {
Show 16 variants
Submit,
Alleged1,
Accept,
Decline,
Addendum,
NoWas,
TradeReportCancel,
_7,
Defaulted,
InvalidCmta,
Pended,
AllegedNew,
AllegedAddendum,
AllegedNoWas,
AllegedTradeReportCancel,
Alleged15,
}
Variants§
Submit
Value “0”
Alleged1
Value “1”
Accept
Value “2”
Decline
Value “3”
Addendum
Value “4”
NoWas
Value “5”
TradeReportCancel
Value “6”
_7
Value “7”
Defaulted
Value “8”
InvalidCmta
Value “9”
Pended
Value “10”
AllegedNew
Value “11”
AllegedAddendum
Value “12”
AllegedNoWas
Value “13”
AllegedTradeReportCancel
Value “14”
Alleged15
Value “15”
Implementations§
Source§impl TradeReportType
impl TradeReportType
pub const fn from_bytes(input: &[u8]) -> Option<TradeReportType>
pub const fn from_fix_str(input: &FixStr) -> Option<TradeReportType>
pub const fn as_bytes(&self) -> &'static [u8] ⓘ
pub const fn as_fix_str(&self) -> &'static FixStr
Trait Implementations§
Source§impl Clone for TradeReportType
impl Clone for TradeReportType
Source§fn clone(&self) -> TradeReportType
fn clone(&self) -> TradeReportType
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 TradeReportType
impl Debug for TradeReportType
Source§impl Default for TradeReportType
impl Default for TradeReportType
Source§fn default() -> TradeReportType
fn default() -> TradeReportType
Returns the “default value” for a type. Read more
Source§impl From<TradeReportType> for &'static [u8]
impl From<TradeReportType> for &'static [u8]
Source§impl PartialEq for TradeReportType
impl PartialEq for TradeReportType
Source§impl ToFixString for TradeReportType
impl ToFixString for TradeReportType
fn to_fix_string(&self) -> FixString
Source§impl TryFrom<i64> for TradeReportType
impl TryFrom<i64> for TradeReportType
Source§type Error = ParseRejectReason
type Error = ParseRejectReason
The type returned in the event of a conversion error.
Source§fn try_from(input: Int) -> Result<TradeReportType, ParseRejectReason>
fn try_from(input: Int) -> Result<TradeReportType, ParseRejectReason>
Performs the conversion.
impl Copy for TradeReportType
impl Eq for TradeReportType
impl StructuralPartialEq for TradeReportType
Auto Trait Implementations§
impl Freeze for TradeReportType
impl RefUnwindSafe for TradeReportType
impl Send for TradeReportType
impl Sync for TradeReportType
impl Unpin for TradeReportType
impl UnwindSafe for TradeReportType
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