Options for iterator. Buffers should be provided by the caller.
file_name_buffer: []u8Use a buffer with length std.fs.max_path_bytes to match file system capabilities.
link_name_buffer: []u8Use a buffer with length std.fs.max_path_bytes to match file system capabilities.
diagnostics: ?*Diagnostics = nullCollects error messages during unpacking
pub const IteratorOptions = struct {
/// Use a buffer with length `std.fs.max_path_bytes` to match file system capabilities.
file_name_buffer: []u8,
/// Use a buffer with length `std.fs.max_path_bytes` to match file system capabilities.
link_name_buffer: []u8,
/// Collects error messages during unpacking
diagnostics: ?*Diagnostics = null,
}