pub type Result<T> = Result<T, RpgError>;
统一的结果类型
pub enum Result<T> { Ok(T), Err(RpgError), }
Contains the success value
Contains the error value