pub type Response<Result> = Response<Result, Error>;Expand description
JSON-RPC response envelope using this protocol version’s error type.
Aliased Type§
pub enum Response<Result> {
Result {
id: RequestId,
result: Result,
},
Error {
id: RequestId,
error: Error,
},
}