pub type XyResult<T> = Result<T, XyError>;
Result type for .xy file operations
pub enum XyResult<T> { Ok(T), Err(XyError), }
Contains the success value
Contains the error value