#[repr(C)]
pub struct CompressSettings { pub windowsize: u32, pub minmatch: u16, pub nicematch: u16, pub btype: u8, pub use_lz77: bool, pub lazymatching: bool, pub custom_zlib: custom_compress_callback, pub custom_deflate: custom_compress_callback, pub custom_context: *const c_void, }
Expand description

Settings for zlib compression. Tweaking these settings tweaks the balance between speed and compression ratio.

Fields

windowsize: u32
👎 Deprecated

Obsolete. No-op.

minmatch: u16
👎 Deprecated

Compression level 1 (fast) to 9 (best). Use set_level() instead.

nicematch: u16
👎 Deprecated

Obsolete. No-op.

btype: u8
👎 Deprecated

Obsolete. No-op.

use_lz77: bool
👎 Deprecated

If false, it won’t compress at all. Use set_level(0)

lazymatching: bool
👎 Deprecated

Obsolete. No-op.

custom_zlib: custom_compress_callback

use custom zlib encoder instead of built in one (default: None)

custom_deflate: custom_compress_callback

use custom deflate encoder instead of built in one (default: null) if custom_zlib is used, custom_deflate is ignored since only the built in zlib function will call custom_deflate

custom_context: *const c_void

optional custom settings for custom functions

Implementations

0 (none), 1 (fast) to 9 (best)

zlib compression level

Default compression settings

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.