pub enum DkReason {
UnknownSymbol,
WrongSide,
QuantityExceedsOrder,
NoMatchingOrder,
PriceExceedsLimit,
CalculationDifference,
Other,
}
Variants§
UnknownSymbol
Value “A”
WrongSide
Value “B”
QuantityExceedsOrder
Value “C”
NoMatchingOrder
Value “D”
PriceExceedsLimit
Value “E”
CalculationDifference
Value “F”
Other
Value “Z”
Implementations§
Trait Implementations§
Source§impl ToFixString for DkReason
impl ToFixString for DkReason
fn to_fix_string(&self) -> FixString
impl Copy for DkReason
impl Eq for DkReason
impl StructuralPartialEq for DkReason
Auto Trait Implementations§
impl Freeze for DkReason
impl RefUnwindSafe for DkReason
impl Send for DkReason
impl Sync for DkReason
impl Unpin for DkReason
impl UnwindSafe for DkReason
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