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