pub type RpcResult<T> = Result<T, Error>;
JSON-RPC result.
enum RpcResult<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value