pub enum SessionRejectReason {
Show 20 variants
InvalidTagNumber,
RequiredTagMissing,
TagNotDefinedForThisMessageType,
UndefinedTag,
TagSpecifiedWithoutAValue,
ValueIsIncorrect,
IncorrectDataFormatForValue,
DecryptionProblem,
SignatureProblem,
CompidProblem,
SendingtimeAccuracyProblem,
InvalidMsgtype,
XmlValidationError,
TagAppearsMoreThanOnce,
TagSpecifiedOutOfRequiredOrder,
RepeatingGroupFieldsOutOfOrder,
IncorrectNumingroupCountForRepeatingGroup,
NonDataValueIncludesFieldDelimiter,
InvalidUnsupportedApplicationVersion,
Other,
}
Variants§
InvalidTagNumber
Value “0”
RequiredTagMissing
Value “1”
TagNotDefinedForThisMessageType
Value “2”
UndefinedTag
Value “3”
TagSpecifiedWithoutAValue
Value “4”
ValueIsIncorrect
Value “5”
IncorrectDataFormatForValue
Value “6”
DecryptionProblem
Value “7”
SignatureProblem
Value “8”
CompidProblem
Value “9”
SendingtimeAccuracyProblem
Value “10”
InvalidMsgtype
Value “11”
XmlValidationError
Value “12”
TagAppearsMoreThanOnce
Value “13”
TagSpecifiedOutOfRequiredOrder
Value “14”
RepeatingGroupFieldsOutOfOrder
Value “15”
IncorrectNumingroupCountForRepeatingGroup
Value “16”
NonDataValueIncludesFieldDelimiter
Value “17”
InvalidUnsupportedApplicationVersion
Value “18”
Other
Value “99”
Implementations§
Source§impl SessionRejectReason
impl SessionRejectReason
pub const fn from_bytes(input: &[u8]) -> Option<SessionRejectReason>
pub const fn from_fix_str(input: &FixStr) -> Option<SessionRejectReason>
pub const fn as_bytes(&self) -> &'static [u8] ⓘ
pub const fn as_fix_str(&self) -> &'static FixStr
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 Default for SessionRejectReason
impl Default for SessionRejectReason
Source§fn default() -> SessionRejectReason
fn default() -> SessionRejectReason
Returns the “default value” for a type. Read more
Source§impl From<SessionRejectReason> for &'static [u8]
impl From<SessionRejectReason> for &'static [u8]
Source§impl PartialEq for SessionRejectReason
impl PartialEq for SessionRejectReason
Source§impl ToFixString for SessionRejectReason
impl ToFixString for SessionRejectReason
fn to_fix_string(&self) -> FixString
Source§impl TryFrom<i64> for SessionRejectReason
impl TryFrom<i64> for SessionRejectReason
Source§type Error = ParseRejectReason
type Error = ParseRejectReason
The type returned in the event of a conversion error.
Source§fn try_from(input: Int) -> Result<SessionRejectReason, ParseRejectReason>
fn try_from(input: Int) -> Result<SessionRejectReason, ParseRejectReason>
Performs the conversion.
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