pub enum RPCErrorCode {
Show 15 variants
RpcInvalidRequest = -32_600,
RpcMethodNotFound = -32_601,
RpcInvalidParams = -32_602,
RpcInternalError = -32_603,
RpcParseError = -32_700,
RpcMiscError = -1,
RpcTypeError = -3,
RpcInvalidAddressOrKey = -5,
RpcInvalidParameter = -8,
RpcDatabaseError = -20,
RpcDeserializationError = -22,
RpcVerifyError = -25,
RpcVerifyRejected = -26,
RpcInWarmup = -28,
RpcMethodDeprecated = -32,
}Variants§
RpcInvalidRequest = -32_600
RpcMethodNotFound = -32_601
RpcInvalidParams = -32_602
RpcInternalError = -32_603
RpcParseError = -32_700
RpcMiscError = -1
RpcTypeError = -3
RpcInvalidAddressOrKey = -5
RpcInvalidParameter = -8
RpcDatabaseError = -20
RpcDeserializationError = -22
RpcVerifyError = -25
RpcVerifyRejected = -26
RpcInWarmup = -28
RpcMethodDeprecated = -32
Auto Trait Implementations§
impl Freeze for RPCErrorCode
impl RefUnwindSafe for RPCErrorCode
impl Send for RPCErrorCode
impl Sync for RPCErrorCode
impl Unpin for RPCErrorCode
impl UnwindSafe for RPCErrorCode
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