pub enum ErrorWrapperForRpcGasPriceError {
RequestValidationError(RpcRequestValidationErrorKind),
HandlerError(RpcGasPriceError),
InternalError(InternalError),
}Expand description
ErrorWrapperForRpcGasPriceError
JSON schema
{
"oneOf": [
{
"type": "object",
"required": [
"cause",
"name"
],
"properties": {
"cause": {
"$ref": "#/components/schemas/RpcRequestValidationErrorKind"
},
"name": {
"type": "string",
"enum": [
"REQUEST_VALIDATION_ERROR"
]
}
}
},
{
"type": "object",
"required": [
"cause",
"name"
],
"properties": {
"cause": {
"$ref": "#/components/schemas/RpcGasPriceError"
},
"name": {
"type": "string",
"enum": [
"HANDLER_ERROR"
]
}
}
},
{
"type": "object",
"required": [
"cause",
"name"
],
"properties": {
"cause": {
"$ref": "#/components/schemas/InternalError"
},
"name": {
"type": "string",
"enum": [
"INTERNAL_ERROR"
]
}
}
}
]
}Variants§
RequestValidationError(RpcRequestValidationErrorKind)
HandlerError(RpcGasPriceError)
InternalError(InternalError)
Trait Implementations§
Source§impl Clone for ErrorWrapperForRpcGasPriceError
impl Clone for ErrorWrapperForRpcGasPriceError
Source§fn clone(&self) -> ErrorWrapperForRpcGasPriceError
fn clone(&self) -> ErrorWrapperForRpcGasPriceError
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for ErrorWrapperForRpcGasPriceError
impl<'de> Deserialize<'de> for ErrorWrapperForRpcGasPriceError
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 Error for ErrorWrapperForRpcGasPriceError
impl Error for ErrorWrapperForRpcGasPriceError
1.30.0§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<&ErrorWrapperForRpcGasPriceError> for ErrorWrapperForRpcGasPriceError
impl From<&ErrorWrapperForRpcGasPriceError> for ErrorWrapperForRpcGasPriceError
Source§fn from(value: &ErrorWrapperForRpcGasPriceError) -> Self
fn from(value: &ErrorWrapperForRpcGasPriceError) -> Self
Converts to this type from the input type.
Source§impl From<InternalError> for ErrorWrapperForRpcGasPriceError
impl From<InternalError> for ErrorWrapperForRpcGasPriceError
Source§fn from(value: InternalError) -> Self
fn from(value: InternalError) -> Self
Converts to this type from the input type.
Source§impl From<RpcGasPriceError> for ErrorWrapperForRpcGasPriceError
impl From<RpcGasPriceError> for ErrorWrapperForRpcGasPriceError
Source§fn from(value: RpcGasPriceError) -> Self
fn from(value: RpcGasPriceError) -> Self
Converts to this type from the input type.
Source§impl From<RpcRequestValidationErrorKind> for ErrorWrapperForRpcGasPriceError
impl From<RpcRequestValidationErrorKind> for ErrorWrapperForRpcGasPriceError
Source§fn from(value: RpcRequestValidationErrorKind) -> Self
fn from(value: RpcRequestValidationErrorKind) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ErrorWrapperForRpcGasPriceError
impl RefUnwindSafe for ErrorWrapperForRpcGasPriceError
impl Send for ErrorWrapperForRpcGasPriceError
impl Sync for ErrorWrapperForRpcGasPriceError
impl Unpin for ErrorWrapperForRpcGasPriceError
impl UnwindSafe for ErrorWrapperForRpcGasPriceError
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)