#[repr(i32)]
pub enum ApplicationExceptionErrorCode {
Show 16 variants
Unknown,
UnknownMethod,
InvalidMessageType,
WrongMethodName,
BadSequenceID,
MissingResult,
InternalError,
ProtocolError,
InvalidTransform,
InvalidProtocol,
UnsupportedClientType,
Loadshedding,
Timeout,
InjectedFailure,
ChecksumMismatch,
Interruption,
}
Variants§
Unknown
UnknownMethod
InvalidMessageType
WrongMethodName
BadSequenceID
MissingResult
InternalError
ProtocolError
InvalidTransform
InvalidProtocol
UnsupportedClientType
Loadshedding
Timeout
InjectedFailure
ChecksumMismatch
Interruption
Trait Implementations§
source§impl Clone for ApplicationExceptionErrorCode
impl Clone for ApplicationExceptionErrorCode
source§fn clone(&self) -> ApplicationExceptionErrorCode
fn clone(&self) -> ApplicationExceptionErrorCode
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 Hash for ApplicationExceptionErrorCode
impl Hash for ApplicationExceptionErrorCode
source§impl Ord for ApplicationExceptionErrorCode
impl Ord for ApplicationExceptionErrorCode
source§fn cmp(&self, other: &ApplicationExceptionErrorCode) -> Ordering
fn cmp(&self, other: &ApplicationExceptionErrorCode) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<ApplicationExceptionErrorCode> for ApplicationExceptionErrorCode
impl PartialEq<ApplicationExceptionErrorCode> for ApplicationExceptionErrorCode
source§fn eq(&self, other: &ApplicationExceptionErrorCode) -> bool
fn eq(&self, other: &ApplicationExceptionErrorCode) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<ApplicationExceptionErrorCode> for ApplicationExceptionErrorCode
impl PartialOrd<ApplicationExceptionErrorCode> for ApplicationExceptionErrorCode
source§fn partial_cmp(&self, other: &ApplicationExceptionErrorCode) -> Option<Ordering>
fn partial_cmp(&self, other: &ApplicationExceptionErrorCode) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read more