pub type XResult<T> = Result<T, XError>;
Result type for the crate
enum XResult<T> { Ok(T), Err(XError), }
Contains the success value
Contains the error value