struct DecompressorOptions [src]
Fields
verify_checksum: bool = true
window_buffer: []u8
Members
- default_window_buffer_len (Constant)
Source
pub const DecompressorOptions = struct {
verify_checksum: bool = true,
window_buffer: []u8,
/// Recommended amount by the standard. Lower than this may result
/// in inability to decompress common streams.
pub const default_window_buffer_len = 8 * 1024 * 1024;
}