pub type XdlResult<T> = Result<T, XdlError>;
Result type for XDL operations
pub enum XdlResult<T> { Ok(T), Err(XdlError), }
Contains the success value
Contains the error value