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