Skip to content

Commit

Permalink
feat: re-add Copy derive to brotli::EncoderParams
Browse files Browse the repository at this point in the history
  • Loading branch information
robjtede committed Aug 29, 2023
1 parent ee2acc1 commit b698b1a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/brotli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ use brotli::enc::backward_references::{BrotliEncoderMode, BrotliEncoderParams};
///
/// See the [Brotli documentation](https://www.brotli.org/encode.html#a9a8) for more information on
/// these parameters.
#[derive(Debug, Clone, PartialEq, Eq)]

#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct EncoderParams {
window_size: i32,
block_size: i32,
Expand Down

0 comments on commit b698b1a

Please sign in to comment.