pub type RpcResult<T> = Result<Response<T>, Error>;
enum RpcResult<T> { Ok(Response<T>), Err(Error), }
Contains the success value
Contains the error value