[][src]Struct brotli::enc::backward_references::BrotliEncoderParams

pub struct BrotliEncoderParams {
    pub dist: BrotliDistanceParams,
    pub mode: BrotliEncoderMode,
    pub quality: i32,
    pub q9_5: bool,
    pub lgwin: i32,
    pub lgblock: i32,
    pub size_hint: usize,
    pub disable_literal_context_modeling: i32,
    pub hasher: BrotliHasherParams,
    pub log_meta_block: bool,
    pub stride_detection_quality: u8,
    pub high_entropy_detection_quality: u8,
    pub cdf_adaptation_detection: u8,
    pub prior_bitmask_detection: u8,
    pub literal_adaptation: [(u16, u16); 4],
    pub large_window: bool,
    pub avoid_distance_prefix_search: bool,
    pub catable: bool,
    pub use_dictionary: bool,
    pub appendable: bool,
    pub magic_number: bool,
    pub favor_cpu_efficiency: bool,
}

Fields

dist: BrotliDistanceParamsmode: BrotliEncoderModequality: i32q9_5: boollgwin: i32lgblock: i32size_hint: usizedisable_literal_context_modeling: i32hasher: BrotliHasherParamslog_meta_block: boolstride_detection_quality: u8high_entropy_detection_quality: u8cdf_adaptation_detection: u8prior_bitmask_detection: u8literal_adaptation: [(u16, u16); 4]large_window: boolavoid_distance_prefix_search: boolcatable: booluse_dictionary: boolappendable: boolmagic_number: boolfavor_cpu_efficiency: bool

Trait Implementations

impl Clone for BrotliEncoderParams[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for BrotliEncoderParams[src]

impl Default for BrotliEncoderParams[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T