Function brotli::enc::BrotliCompress

source ·
pub fn BrotliCompress<InputType, OutputType>(
    r: &mut InputType,
    w: &mut OutputType,
    params: &BrotliEncoderParams
) -> Result<usize, Error>where
    InputType: Read,
    OutputType: Write,