pub fn get_entry<ObjectID: FsVerityHashValue>(
reader: &mut SplitStreamReader<ObjectID>,
) -> Result<Option<TarEntry<ObjectID>>>Expand description
Reads and parses the next tar entry from a split stream.
Decodes tar headers and data from a composefs split stream, handling both inline and
external content storage. Supports GNU long name/link extensions, PAX headers, and
extended attributes. Returns None when the end of the archive is reached.
Returns the parsed tar entry, or None if the end of the stream is reached.