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