pub fn BrotliDecompressCustomDict<InputType, OutputType>( r: &mut InputType, w: &mut OutputType, input_buffer: &mut [u8], output_buffer: &mut [u8], custom_dictionary: Vec<u8>, ) -> Result<(), Error>where InputType: Read, OutputType: Write,