Crate zstd_chunked

Source
Expand description

A library to help read zstd:chunked files

Structs§

ContentReference
A reference to a compressed range in a zstd:chunked file, along with size and checksum information about the uncompressed data at that range.
MetadataReference
A reference to file metadata, either the manifest or the tarsplit
MetadataReferences
References to the manifest and tarsplit metadata. You can read these from the file footer or from the annotations on the OCI layer descriptor.
Stream
Represents the layout of a zstd:chunked file. You can reconstruct the original file contents by iterating over the chunks.

Enums§

Chunk
A chunk of data in a zstd:chunked stream. Either contains inline data or a reference to a compressed range (and checksum and size information about the data at that range).