pub type Result<T> = Result<T, XMLError>;
Custom Result type thrown by this crate.
Result
enum Result<T> { Ok(T), Err(XMLError), }
Contains the success value
Contains the error value