Struct async_jsonrpc_client::Error [−][src]
JSON-RPC Error Object.
Fields
code: ErrorCode
A Number that indicates the error type that occurred. This MUST be an integer.
message: String
A String providing a short description of the error. The message SHOULD be limited to a concise single sentence.
data: Option<Value>
A Primitive or Structured value that contains additional information about the error. This may be omitted. The value of this member is defined by the Server (e.g. detailed error information, nested errors etc.).
Implementations
impl Error
[src]
pub fn new(code: ErrorCode) -> Error
[src]
Wraps given ErrorCode
.
pub fn parse_error() -> Error
[src]
Creates a new ParseError
error.
pub fn invalid_request() -> Error
[src]
Creates a new InvalidRequest
error.
pub fn method_not_found() -> Error
[src]
Creates a new MethodNotFound
error.
pub fn invalid_params<M>(message: M) -> Error where
M: Display,
[src]
M: Display,
Creates a new InvalidParams
error with given message.
pub fn invalid_params_with_details<M, D>(message: M, details: D) -> Error where
M: Display,
D: Display,
[src]
M: Display,
D: Display,
Creates a new InvalidParams
error with given message and details.
pub fn internal_error() -> Error
[src]
Creates a new InternalError
error.
pub fn invalid_version() -> Error
[src]
Creates a new InvalidRequest
error with invalid version description.
Trait Implementations
impl Clone for Error
[src]
impl Debug for Error
[src]
impl<'de> Deserialize<'de> for Error
[src]
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<Error, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
[src]
__deserializer: __D
) -> Result<Error, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
impl Display for Error
[src]
impl Eq for Error
[src]
impl Error for Error
[src]
pub fn source(&self) -> Option<&(dyn Error + 'static)>
1.30.0[src]
pub fn backtrace(&self) -> Option<&Backtrace>
[src]
pub fn description(&self) -> &str
1.0.0[src]
pub fn cause(&self) -> Option<&dyn Error>
1.0.0[src]
impl PartialEq<Error> for Error
[src]
impl Serialize for Error
[src]
pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
[src]
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
impl StructuralEq for Error
[src]
impl StructuralPartialEq for Error
[src]
Auto Trait Implementations
impl RefUnwindSafe for Error
[src]
impl Send for Error
[src]
impl Sync for Error
[src]
impl Unpin for Error
[src]
impl UnwindSafe for Error
[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,