pub struct Error {
pub code: i32,
pub message: String,
pub data: Option<Value>,
}👎Deprecated since 0.14.0:
hand-rolled JSON-RPC types existed only to serve act_types::mcp; use rmcp::model for MCP wire types. Scheduled for removal in 0.15.0.
Expand description
A JSON-RPC error object.
Fields§
§code: i32👎Deprecated since 0.14.0:
§hand-rolled JSON-RPC types existed only to serve act_types::mcp; use rmcp::model for MCP wire types. Scheduled for removal in 0.15.0.
message: String👎Deprecated since 0.14.0:
§hand-rolled JSON-RPC types existed only to serve act_types::mcp; use rmcp::model for MCP wire types. Scheduled for removal in 0.15.0.
data: Option<Value>👎Deprecated since 0.14.0:
hand-rolled JSON-RPC types existed only to serve act_types::mcp; use rmcp::model for MCP wire types. Scheduled for removal in 0.15.0.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Error
impl<'de> Deserialize<'de> for Error
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
Auto Trait Implementations§
impl Freeze for Error
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnsafeUnpin for Error
impl UnwindSafe for Error
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