pub type RpcResult<T> = Result<T, RpcError>;
A result returned by the client.
enum RpcResult<T> { Ok(T), Err(RpcError), }
Contains the success value
Contains the error value