Struct cuprate_json_rpc::error::ErrorObject

source ·
pub struct ErrorObject {
    pub code: ErrorCode,
    pub message: Cow<'static, str>,
    pub data: Option<Value>,
}
Expand description

The error object.

This is the object sent back in a Response if the method call errored.

§Display

use cuprate_json_rpc::error::ErrorObject;

// The format is `$CODE: $MESSAGE`.
// If a message was not passed during construction,
// the error code's message will be used.
assert_eq!(format!("{}", ErrorObject::parse_error()),      "-32700: Parse error");
assert_eq!(format!("{}", ErrorObject::invalid_request()),  "-32600: Invalid Request");
assert_eq!(format!("{}", ErrorObject::method_not_found()), "-32601: Method not found");
assert_eq!(format!("{}", ErrorObject::invalid_params()),   "-32602: Invalid params");
assert_eq!(format!("{}", ErrorObject::internal_error()),   "-32603: Internal error");
assert_eq!(format!("{}", ErrorObject::server_error(0)),    "0: Server error");

// Set a custom message.
let mut e = ErrorObject::server_error(1);
e.message = "hello".into();
assert_eq!(format!("{e}"), "1: hello");

Fields§

§code: ErrorCode

The error code.

§message: Cow<'static, str>

A custom message for this error, distinct from ErrorCode::msg.

A JSON string value.

This is a Cow<'static, str> to support both 0-allocation for const string ID’s commonly found in programs, as well as support for runtime String’s.

§data: Option<Value>

Optional data associated with the error.

§None vs Some(Value::Null)

This field will be completely omitted during serialization if None, however if it is Some(Value::Null), it will be serialized as "data": null.

Implementations§

source§

impl ErrorObject

source

pub const fn from_code(code: ErrorCode) -> Self

Creates a new error, deriving the message from the code.

Same as ErrorObject::from(ErrorCode).

use std::borrow::Cow;
use cuprate_json_rpc::error::{ErrorCode, ErrorObject};

for code in [
    ErrorCode::ParseError,
    ErrorCode::InvalidRequest,
    ErrorCode::MethodNotFound,
    ErrorCode::InvalidParams,
    ErrorCode::InternalError,
    ErrorCode::ServerError(0),
] {
    let object = ErrorObject::from_code(code);
    assert_eq!(object, ErrorObject {
        code,
        message: Cow::Borrowed(code.msg()),
        data: None,
    });

}
source

pub const fn parse_error() -> Self

Creates a new error using PARSE_ERROR.

use std::borrow::Cow;
use cuprate_json_rpc::error::{ErrorCode, ErrorObject};

let code = ErrorCode::ParseError;
let object = ErrorObject::parse_error();
assert_eq!(object, ErrorObject {
    code,
    message: Cow::Borrowed(code.msg()),
    data: None,
});
source

pub const fn invalid_request() -> Self

Creates a new error using INVALID_REQUEST.

use std::borrow::Cow;
use cuprate_json_rpc::error::{ErrorCode, ErrorObject};

let code = ErrorCode::InvalidRequest;
let object = ErrorObject::invalid_request();
assert_eq!(object, ErrorObject {
    code,
    message: Cow::Borrowed(code.msg()),
    data: None,
});
source

pub const fn method_not_found() -> Self

Creates a new error using METHOD_NOT_FOUND.

use std::borrow::Cow;
use cuprate_json_rpc::error::{ErrorCode, ErrorObject};

let code = ErrorCode::MethodNotFound;
let object = ErrorObject::method_not_found();
assert_eq!(object, ErrorObject {
    code,
    message: Cow::Borrowed(code.msg()),
    data: None,
});
source

pub const fn invalid_params() -> Self

Creates a new error using INVALID_PARAMS.

use std::borrow::Cow;
use cuprate_json_rpc::error::{ErrorCode, ErrorObject};

let code = ErrorCode::InvalidParams;
let object = ErrorObject::invalid_params();
assert_eq!(object, ErrorObject {
    code,
    message: Cow::Borrowed(code.msg()),
    data: None,
});
source

pub const fn internal_error() -> Self

Creates a new error using INTERNAL_ERROR.

use std::borrow::Cow;
use cuprate_json_rpc::error::{ErrorCode, ErrorObject};

let code = ErrorCode::InternalError;
let object = ErrorObject::internal_error();
assert_eq!(object, ErrorObject {
    code,
    message: Cow::Borrowed(code.msg()),
    data: None,
});
source

pub const fn server_error(error_code: i32) -> Self

Creates a new error using SERVER_ERROR.

You must provide the custom i32 error code.

use std::borrow::Cow;
use cuprate_json_rpc::error::{ErrorCode, ErrorObject};

let code = ErrorCode::ServerError(0);
let object = ErrorObject::server_error(0);
assert_eq!(object, ErrorObject {
    code,
    message: Cow::Borrowed(code.msg()),
    data: None,
});

Trait Implementations§

source§

impl Clone for ErrorObject

source§

fn clone(&self) -> ErrorObject

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for ErrorObject

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for ErrorObject

source§

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 Display for ErrorObject

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for ErrorObject

source§

fn source(&self) -> Option<&(dyn Error + 'static)>

Returns the lower-level source of this error, if any. Read more
source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type-based access to context intended for error reports. Read more
source§

impl From<ErrorCode> for ErrorObject

source§

fn from(code: ErrorCode) -> Self

Converts to this type from the input type.
source§

impl PartialEq for ErrorObject

source§

fn eq(&self, other: &ErrorObject) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for ErrorObject

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Eq for ErrorObject

source§

impl StructuralPartialEq for ErrorObject

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Layout§

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.

Size: 64 bytes