pub type Result<T> = Result<T, Error>;
📦 客户端结果类型别名
pub enum Result<T> { Ok(T), Err(CoreError), }
Contains the success value
Contains the error value
Client的便利构造函数