pub type Result<T> = Result<T, DxError>;
DX 编码结果类型
pub enum Result<T> { Ok(T), Err(DxError), }
Contains the success value
Contains the error value