pub struct JsonRpcErrorObject {
pub code: i64,
pub message: String,
pub data: Option<Value>,
}Expand description
JSON-RPC error object embedded in an error response. It carries protocol failure details only; constructing it does not log, publish, or send the error.
Fields§
§code: i64JSON-RPC error code, using standard protocol codes or an adapter-defined extension code.
message: StringHuman-readable protocol error message.
data: Option<Value>Optional data value. When absent, callers should use the documented default or skip that optional behavior.
Implementations§
Trait Implementations§
Source§impl Clone for JsonRpcErrorObject
impl Clone for JsonRpcErrorObject
Source§fn clone(&self) -> JsonRpcErrorObject
fn clone(&self) -> JsonRpcErrorObject
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for JsonRpcErrorObject
impl Debug for JsonRpcErrorObject
Source§impl<'de> Deserialize<'de> for JsonRpcErrorObject
impl<'de> Deserialize<'de> for JsonRpcErrorObject
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 PartialEq for JsonRpcErrorObject
impl PartialEq for JsonRpcErrorObject
Source§fn eq(&self, other: &JsonRpcErrorObject) -> bool
fn eq(&self, other: &JsonRpcErrorObject) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for JsonRpcErrorObject
impl Serialize for JsonRpcErrorObject
impl StructuralPartialEq for JsonRpcErrorObject
Auto Trait Implementations§
impl Freeze for JsonRpcErrorObject
impl RefUnwindSafe for JsonRpcErrorObject
impl Send for JsonRpcErrorObject
impl Sync for JsonRpcErrorObject
impl Unpin for JsonRpcErrorObject
impl UnsafeUnpin for JsonRpcErrorObject
impl UnwindSafe for JsonRpcErrorObject
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