#[repr(i32)]pub enum ApplicationExceptionErrorCode {
Show 16 variants
Unknown = 0,
UnknownMethod = 1,
InvalidMessageType = 2,
WrongMethodName = 3,
BadSequenceID = 4,
MissingResult = 5,
InternalError = 6,
ProtocolError = 7,
InvalidTransform = 8,
InvalidProtocol = 9,
UnsupportedClientType = 10,
Loadshedding = 11,
Timeout = 12,
InjectedFailure = 13,
ChecksumMismatch = 14,
Interruption = 15,
}
Variants§
Unknown = 0
UnknownMethod = 1
InvalidMessageType = 2
WrongMethodName = 3
BadSequenceID = 4
MissingResult = 5
InternalError = 6
ProtocolError = 7
InvalidTransform = 8
InvalidProtocol = 9
UnsupportedClientType = 10
Loadshedding = 11
Timeout = 12
InjectedFailure = 13
ChecksumMismatch = 14
Interruption = 15
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 Default for ApplicationExceptionErrorCode
impl Default for ApplicationExceptionErrorCode
Source§fn default() -> ApplicationExceptionErrorCode
fn default() -> ApplicationExceptionErrorCode
Returns the “default value” for a type. Read more
Source§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 for ApplicationExceptionErrorCode
impl PartialEq for ApplicationExceptionErrorCode
Source§fn eq(&self, other: &ApplicationExceptionErrorCode) -> bool
fn eq(&self, other: &ApplicationExceptionErrorCode) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl PartialOrd for ApplicationExceptionErrorCode
impl PartialOrd for ApplicationExceptionErrorCode
impl Copy for ApplicationExceptionErrorCode
impl Eq for ApplicationExceptionErrorCode
impl StructuralPartialEq for ApplicationExceptionErrorCode
Auto Trait Implementations§
impl Freeze for ApplicationExceptionErrorCode
impl RefUnwindSafe for ApplicationExceptionErrorCode
impl Send for ApplicationExceptionErrorCode
impl Sync for ApplicationExceptionErrorCode
impl Unpin for ApplicationExceptionErrorCode
impl UnwindSafe for ApplicationExceptionErrorCode
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