struct IteratorOptions [src]
Options for iterator.
Buffers should be provided by the caller.
Fields
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
Source
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,
}