[][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]

impl Debug for BrotliEncoderParams[src]

impl Default for BrotliEncoderParams[src]

Auto Trait Implementations

impl RefUnwindSafe for BrotliEncoderParams

impl Send for BrotliEncoderParams

impl Sync for BrotliEncoderParams

impl Unpin for BrotliEncoderParams

impl UnwindSafe for BrotliEncoderParams

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.