pub type Result<T> = Result<T, RawError>;
模块级别的结果类型别名
pub enum Result<T> { Ok(T), Err(RawError), }
Contains the success value
Contains the error value