#[repr(C)]
pub struct ZSTD_frameParameters { pub contentSizeFlag: c_int, pub checksumFlag: c_int, pub noDictIDFlag: c_int, }

Fields

contentSizeFlag: c_int

< 1: content size will be in frame header (when known)

checksumFlag: c_int

< 1: generate a 32-bits checksum using XXH64 algorithm at end of frame, for error detection

noDictIDFlag: c_int

< 1: no dictID will be saved into frame header (dictID is only useful for dictionary compression)

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

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 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.