#[repr(i32)]pub enum RuntimeErrorCode {
Show 20 variants
UnknownMessageKind = 1_001,
UnsupportedProtocolVersion = 1_002,
InvalidEnvelope = 1_003,
InvalidRequestId = 1_004,
InvalidInstanceId = 1_005,
InstanceNotFound = 1_006,
MethodNotFound = 1_007,
NotificationNotFound = 1_008,
PayloadDecodeFailed = 1_009,
PayloadEncodeFailed = 1_010,
ServiceActivationNotSupported = 1_011,
ServiceGuidNotFound = 1_012,
InstanceReleaseNotAllowed = 1_013,
RequestTimeout = 1_014,
UnsupportedCapability = 1_015,
BusinessErrorDeclared = 1_016,
DuplicateRequestId = 1_017,
RequestCancelUnsupported = 1_018,
AccessDenied = 1_019,
InternalRuntimeError = 1_020,
}Variants§
UnknownMessageKind = 1_001
UnsupportedProtocolVersion = 1_002
InvalidEnvelope = 1_003
InvalidRequestId = 1_004
InvalidInstanceId = 1_005
InstanceNotFound = 1_006
MethodNotFound = 1_007
NotificationNotFound = 1_008
PayloadDecodeFailed = 1_009
PayloadEncodeFailed = 1_010
ServiceActivationNotSupported = 1_011
ServiceGuidNotFound = 1_012
InstanceReleaseNotAllowed = 1_013
RequestTimeout = 1_014
UnsupportedCapability = 1_015
BusinessErrorDeclared = 1_016
DuplicateRequestId = 1_017
RequestCancelUnsupported = 1_018
AccessDenied = 1_019
InternalRuntimeError = 1_020
Implementations§
Trait Implementations§
Source§impl Clone for RuntimeErrorCode
impl Clone for RuntimeErrorCode
Source§fn clone(&self) -> RuntimeErrorCode
fn clone(&self) -> RuntimeErrorCode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RuntimeErrorCode
impl Debug for RuntimeErrorCode
Source§impl<'de> Deserialize<'de> for RuntimeErrorCode
impl<'de> Deserialize<'de> for RuntimeErrorCode
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for RuntimeErrorCode
impl Hash for RuntimeErrorCode
Source§impl PartialEq for RuntimeErrorCode
impl PartialEq for RuntimeErrorCode
Source§fn eq(&self, other: &RuntimeErrorCode) -> bool
fn eq(&self, other: &RuntimeErrorCode) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RuntimeErrorCode
impl Serialize for RuntimeErrorCode
impl Copy for RuntimeErrorCode
impl Eq for RuntimeErrorCode
impl StructuralPartialEq for RuntimeErrorCode
Auto Trait Implementations§
impl Freeze for RuntimeErrorCode
impl RefUnwindSafe for RuntimeErrorCode
impl Send for RuntimeErrorCode
impl Sync for RuntimeErrorCode
impl Unpin for RuntimeErrorCode
impl UnsafeUnpin for RuntimeErrorCode
impl UnwindSafe for RuntimeErrorCode
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