Ex version of PathBuf in Rust.
```rust use pathwithzip::PathBufWithZip;
let path = "test.zip///test/test.txt";
// The error type is zip::result::ZipError, which includes std::io::Error.
let bytes: Vec
Another way:
rust
use pathwithzip::PathBufWithZip;
let path = "test.zip"; let pathbufwithzip = PathBufWithZip::from(path);
let mut ziparchive = pathbufwithzip.openarchive().unwrap(); // OR // let mut ziparchive = pathbufwithzip.openarchiveintomemory().unwrap();
let bytes: Vec
```rust use pathwithzip::PathBufWithZip;
let path = "test.zip";
let bytes: Vec
Another way:
rust
use pathwithzip::PathBufWithZip;
let path = "test.zip"; let pathbufwithzip = PathBufWithZip::from(path);
let bytes: Vec