pub enum ExceptionCode {
Show 27 variants
Unsupported,
NullData,
ErrorSubscribe,
ErrorUnsubscribe,
ErrorProcessDataReport,
ErrorProcessDataPoll,
ErrorLock,
ErrorUnlock,
FunctionNoImpl,
Unreachable,
Unauthenticated,
Unauthorized,
PreconditionFail,
SessionExpired,
Internal,
Unknown,
NotFound,
AlreadyExists,
BadRequest,
InvalidWidgetDefinition,
DeadlineExceeded,
TemporaryUnavailable,
ResourceLocked,
WsConnectionLost,
BillAutomationExceed,
BillTokenExceed,
MissingContext,
}Variants§
Unsupported
NullData
ErrorSubscribe
ErrorUnsubscribe
ErrorProcessDataReport
ErrorProcessDataPoll
ErrorLock
ErrorUnlock
FunctionNoImpl
Unreachable
Unauthenticated
PreconditionFail
SessionExpired
Internal
Unknown
NotFound
AlreadyExists
BadRequest
InvalidWidgetDefinition
DeadlineExceeded
ResourceLocked
WsConnectionLost
BillAutomationExceed
BillTokenExceed
MissingContext
Implementations§
Trait Implementations§
Source§impl Clone for ExceptionCode
impl Clone for ExceptionCode
Source§fn clone(&self) -> ExceptionCode
fn clone(&self) -> ExceptionCode
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 moreimpl Copy for ExceptionCode
Source§impl Debug for ExceptionCode
impl Debug for ExceptionCode
Source§impl<'de> Deserialize<'de> for ExceptionCode
impl<'de> Deserialize<'de> for ExceptionCode
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
impl Eq for ExceptionCode
Source§impl From<ExceptionCode> for String
impl From<ExceptionCode> for String
Source§fn from(value: ExceptionCode) -> Self
fn from(value: ExceptionCode) -> Self
Converts to this type from the input type.
Source§impl Hash for ExceptionCode
impl Hash for ExceptionCode
Source§impl PartialEq for ExceptionCode
impl PartialEq for ExceptionCode
Source§impl Serialize for ExceptionCode
impl Serialize for ExceptionCode
impl StructuralPartialEq for ExceptionCode
Auto Trait Implementations§
impl Freeze for ExceptionCode
impl RefUnwindSafe for ExceptionCode
impl Send for ExceptionCode
impl Sync for ExceptionCode
impl Unpin for ExceptionCode
impl UnsafeUnpin for ExceptionCode
impl UnwindSafe for ExceptionCode
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