Trait jsonrpc_v2::ErrorLike
source · [−]pub trait ErrorLike: Display {
fn code(&self) -> i64 { ... }
fn message(&self) -> String { ... }
fn data(&self) -> Option<Box<dyn Serialize + Send>> { ... }
}Expand description
Trait that can be used to map custom errors to the Error object.
Provided methods
Message to be used in JSON-RPC 2.0 Error object. Default is the Display value of the item.