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