pub type CoreResult<T> = Result<T, CoreError>;
SDK 操作结果类型别名
pub enum CoreResult<T> { Ok(T), Err(CoreError), }
Contains the success value
Contains the error value