pub type RatResult<T> = Result<T, RatError>;
RAT Engine 结果类型
pub enum RatResult<T> { Ok(T), Err(RatError), }
Contains the success value
Contains the error value