pub type ZipResult<T> = Result<T, ZipError>;
Generic result type with ZipError as its error variant
enum ZipResult<T> { Ok(T), Err(ZipError), }
Contains the success value
Contains the error value