pub enum ExecRestatementReason {
Show 13 variants
GtCorporateAction,
GtRenewal,
VerbalChange,
RepricingOfOrder,
BrokerOption,
PartialDeclineOfOrderqty,
CancelOnTradingHalt,
CancelOnSystemFailure,
Market,
CanceledNotBest,
WarehouseRecap,
PegRefresh,
Other,
}
Variants§
GtCorporateAction
Value “0”
GtRenewal
Value “1”
VerbalChange
Value “2”
RepricingOfOrder
Value “3”
BrokerOption
Value “4”
PartialDeclineOfOrderqty
Value “5”
CancelOnTradingHalt
Value “6”
CancelOnSystemFailure
Value “7”
Market
Value “8”
CanceledNotBest
Value “9”
WarehouseRecap
Value “10”
PegRefresh
Value “11”
Other
Value “99”
Implementations§
Source§impl ExecRestatementReason
impl ExecRestatementReason
pub const fn from_bytes(input: &[u8]) -> Option<ExecRestatementReason>
pub const fn from_fix_str(input: &FixStr) -> Option<ExecRestatementReason>
pub const fn as_bytes(&self) -> &'static [u8] ⓘ
pub const fn as_fix_str(&self) -> &'static FixStr
Trait Implementations§
Source§impl Clone for ExecRestatementReason
impl Clone for ExecRestatementReason
Source§fn clone(&self) -> ExecRestatementReason
fn clone(&self) -> ExecRestatementReason
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 ExecRestatementReason
impl Debug for ExecRestatementReason
Source§impl Default for ExecRestatementReason
impl Default for ExecRestatementReason
Source§fn default() -> ExecRestatementReason
fn default() -> ExecRestatementReason
Returns the “default value” for a type. Read more
Source§impl From<ExecRestatementReason> for &'static [u8]
impl From<ExecRestatementReason> for &'static [u8]
Source§impl PartialEq for ExecRestatementReason
impl PartialEq for ExecRestatementReason
Source§impl ToFixString for ExecRestatementReason
impl ToFixString for ExecRestatementReason
fn to_fix_string(&self) -> FixString
Source§impl TryFrom<i64> for ExecRestatementReason
impl TryFrom<i64> for ExecRestatementReason
Source§type Error = ParseRejectReason
type Error = ParseRejectReason
The type returned in the event of a conversion error.
Source§fn try_from(input: Int) -> Result<ExecRestatementReason, ParseRejectReason>
fn try_from(input: Int) -> Result<ExecRestatementReason, ParseRejectReason>
Performs the conversion.
impl Copy for ExecRestatementReason
impl Eq for ExecRestatementReason
impl StructuralPartialEq for ExecRestatementReason
Auto Trait Implementations§
impl Freeze for ExecRestatementReason
impl RefUnwindSafe for ExecRestatementReason
impl Send for ExecRestatementReason
impl Sync for ExecRestatementReason
impl Unpin for ExecRestatementReason
impl UnwindSafe for ExecRestatementReason
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