Crate rc_zip_tokio
source ·Expand description
A library for reading zip files asynchronously using tokio I/O traits, based on top of rc-zip.
See also:
- rc-zip-sync for using std I/O traits
Re-exports§
pub use rc_zip;
Structs§
- A zip archive, read asynchronously from a file or other I/O resource.
- A single entry in a zip archive, read asynchronously from a file or other I/O resource.
- Reads a zip entry based on a local header. Some information is missing, not all name encodings may work, and only by reading it in its entirety can you move on to the next entry.
Traits§
- A sliceable I/O resource: we can ask for an AsyncRead at a given offset.
- A zip archive, read asynchronously from a file or other I/O resource.
- Allows reading zip entries in a streaming fashion, without seeking, based only on local headers. THIS IS NOT RECOMMENDED, as correctly reading zip files requires reading the central directory (located at the end of the file).
- A trait for reading something as a zip archive.