pub type ZtkResult<T> = Result<T, ZtkError>;
Result 类型别名
SDK 中所有返回 Result 的方法都使用此类型
pub enum ZtkResult<T> { Ok(T), Err(ZtkError), }
Contains the success value
Contains the error value