pub enum SessionRejectReason {
Show 20 variants
InvalidTagNumber = 0,
RequiredTagMissing = 1,
TagNotDefinedForThisMessageType = 2,
UndefinedTag = 3,
TagSpecifiedWithoutAValue = 4,
ValueIsIncorrect = 5,
IncorrectDataFormatForValue = 6,
DecryptionProblem = 7,
SignatureProblem = 8,
CompidProblem = 9,
SendingtimeAccuracyProblem = 10,
InvalidMsgtype = 11,
XmlValidationError = 12,
TagAppearsMoreThanOnce = 13,
TagSpecifiedOutOfRequiredOrder = 14,
RepeatingGroupFieldsOutOfOrder = 15,
IncorrectNumingroupCountForRepeatingGroup = 16,
NonDataValueIncludesFieldDelimiter = 17,
InvalidUnsupportedApplicationVersion = 18,
Other = 99,
}
Variants§
InvalidTagNumber = 0
RequiredTagMissing = 1
TagNotDefinedForThisMessageType = 2
UndefinedTag = 3
TagSpecifiedWithoutAValue = 4
ValueIsIncorrect = 5
IncorrectDataFormatForValue = 6
DecryptionProblem = 7
SignatureProblem = 8
CompidProblem = 9
SendingtimeAccuracyProblem = 10
InvalidMsgtype = 11
XmlValidationError = 12
TagAppearsMoreThanOnce = 13
TagSpecifiedOutOfRequiredOrder = 14
RepeatingGroupFieldsOutOfOrder = 15
IncorrectNumingroupCountForRepeatingGroup = 16
NonDataValueIncludesFieldDelimiter = 17
InvalidUnsupportedApplicationVersion = 18
Other = 99
Implementations§
Source§impl SessionRejectReason
impl SessionRejectReason
pub const fn from_const_bytes(s: &[u8]) -> Result<Self, FixParseError>
Trait Implementations§
Source§impl Clone for SessionRejectReason
impl Clone for SessionRejectReason
Source§fn clone(&self) -> SessionRejectReason
fn clone(&self) -> SessionRejectReason
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 SessionRejectReason
impl Debug for SessionRejectReason
Source§impl FromStr for SessionRejectReason
impl FromStr for SessionRejectReason
Source§impl Hash for SessionRejectReason
impl Hash for SessionRejectReason
Source§impl IntoFixValue for SessionRejectReason
impl IntoFixValue for SessionRejectReason
Source§impl PartialEq for SessionRejectReason
impl PartialEq for SessionRejectReason
impl Copy for SessionRejectReason
impl Eq for SessionRejectReason
impl StructuralPartialEq for SessionRejectReason
Auto Trait Implementations§
impl Freeze for SessionRejectReason
impl RefUnwindSafe for SessionRejectReason
impl Send for SessionRejectReason
impl Sync for SessionRejectReason
impl Unpin for SessionRejectReason
impl UnwindSafe for SessionRejectReason
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