pub type JrpcResult = Result<JsonRpcResponse, JsonRpcResponse>;
Expand description
Hack until try_trait_v2 is not stabilized
Aliased Type§
enum JrpcResult {
Ok(JsonRpcResponse),
Err(JsonRpcResponse),
}
Variants§
Ok(JsonRpcResponse)
Contains the success value
Err(JsonRpcResponse)
Contains the error value