pub enum ErrorCode {
Show 54 variants
E1001 = 1_001,
E1002 = 1_002,
E1003 = 1_003,
E1004 = 1_004,
E1005 = 1_005,
E1006 = 1_006,
E2001 = 2_001,
E2002 = 2_002,
E2003 = 2_003,
E2004 = 2_004,
E2005 = 2_005,
E2006 = 2_006,
E3001 = 3_001,
E3002 = 3_002,
E3003 = 3_003,
E3004 = 3_004,
E3005 = 3_005,
E3006 = 3_006,
E4001 = 4_001,
E4002 = 4_002,
E4003 = 4_003,
E4004 = 4_004,
E4005 = 4_005,
E4006 = 4_006,
E5001 = 5_001,
E5002 = 5_002,
E5003 = 5_003,
E5004 = 5_004,
E5005 = 5_005,
E5006 = 5_006,
E6001 = 6_001,
E6002 = 6_002,
E6003 = 6_003,
E6004 = 6_004,
E6005 = 6_005,
E6006 = 6_006,
E7001 = 7_001,
E7002 = 7_002,
E7003 = 7_003,
E7004 = 7_004,
E7005 = 7_005,
E7006 = 7_006,
E8001 = 8_001,
E8002 = 8_002,
E8003 = 8_003,
E8004 = 8_004,
E8005 = 8_005,
E8006 = 8_006,
E9001 = 9_001,
E9002 = 9_002,
E9003 = 9_003,
E9004 = 9_004,
E9005 = 9_005,
E9006 = 9_006,
}Expand description
Error codes for categorizing different types of errors
Variants§
E1001 = 1_001
E1002 = 1_002
E1003 = 1_003
E1004 = 1_004
E1005 = 1_005
E1006 = 1_006
E2001 = 2_001
E2002 = 2_002
E2003 = 2_003
E2004 = 2_004
E2005 = 2_005
E2006 = 2_006
E3001 = 3_001
E3002 = 3_002
E3003 = 3_003
E3004 = 3_004
E3005 = 3_005
E3006 = 3_006
E4001 = 4_001
E4002 = 4_002
E4003 = 4_003
E4004 = 4_004
E4005 = 4_005
E4006 = 4_006
E5001 = 5_001
E5002 = 5_002
E5003 = 5_003
E5004 = 5_004
E5005 = 5_005
E5006 = 5_006
E6001 = 6_001
E6002 = 6_002
E6003 = 6_003
E6004 = 6_004
E6005 = 6_005
E6006 = 6_006
E7001 = 7_001
E7002 = 7_002
E7003 = 7_003
E7004 = 7_004
E7005 = 7_005
E7006 = 7_006
E8001 = 8_001
E8002 = 8_002
E8003 = 8_003
E8004 = 8_004
E8005 = 8_005
E8006 = 8_006
E9001 = 9_001
E9002 = 9_002
E9003 = 9_003
E9004 = 9_004
E9005 = 9_005
E9006 = 9_006
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ErrorCode
impl<'de> Deserialize<'de> for ErrorCode
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 FromWasmAbi for ErrorCode
impl FromWasmAbi for ErrorCode
Source§impl IntoWasmAbi for ErrorCode
impl IntoWasmAbi for ErrorCode
Source§impl OptionFromWasmAbi for ErrorCode
impl OptionFromWasmAbi for ErrorCode
Source§impl OptionIntoWasmAbi for ErrorCode
impl OptionIntoWasmAbi for ErrorCode
Source§impl TryFromJsValue for ErrorCode
impl TryFromJsValue for ErrorCode
Source§impl VectorFromWasmAbi for ErrorCode
impl VectorFromWasmAbi for ErrorCode
Source§impl VectorIntoWasmAbi for ErrorCode
impl VectorIntoWasmAbi for ErrorCode
impl Copy for ErrorCode
impl Eq for ErrorCode
impl StructuralPartialEq for ErrorCode
Auto Trait Implementations§
impl Freeze for ErrorCode
impl RefUnwindSafe for ErrorCode
impl Send for ErrorCode
impl Sync for ErrorCode
impl Unpin for ErrorCode
impl UnsafeUnpin for ErrorCode
impl UnwindSafe for ErrorCode
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
Source§type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
Same as
IntoWasmAbi::AbiSource§fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
Same as
IntoWasmAbi::into_abi, except that it may throw and never
return in the case of Err.