structstd.tar.IteratorOptions[src]

Options for iterator. Buffers should be provided by the caller.

Fields

file_name_buffer: []u8

Use a buffer with length std.fs.max_path_bytes to match file system capabilities.

link_name_buffer: []u8

Use a buffer with length std.fs.max_path_bytes to match file system capabilities.

diagnostics: ?*Diagnostics = null

Collects error messages during unpacking

Source Code

Source code
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,
}