Type Alias jsonrpsee_core::RpcResult
source · pub type RpcResult<T> = Result<T, ErrorObjectOwned>;
Expand description
JSON-RPC result.
Aliased Type§
enum RpcResult<T> {
Ok(T),
Err(ErrorObject<'static>),
}
pub type RpcResult<T> = Result<T, ErrorObjectOwned>;
JSON-RPC result.
enum RpcResult<T> {
Ok(T),
Err(ErrorObject<'static>),
}