pub type Result<T> = Result<T, SZipError>;
Result type for s-zip operations
pub enum Result<T> { Ok(T), Err(SZipError), }
Contains the success value
Contains the error value