Skip to content

Commit 5ea6e93

Browse files
committed
fix: UploadCompression should be Copy
1 parent dd3dba2 commit 5ea6e93

File tree

1 file changed

+1
-1
lines changed
  • datadog-profiling/src/serializer

1 file changed

+1
-1
lines changed

datadog-profiling/src/serializer/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ mod compressed_streaming_encoder;
66
pub use compressed_streaming_encoder::*;
77

88
#[repr(C)]
9-
#[derive(Debug, Default)]
9+
#[derive(Copy, Clone, Debug, Default)]
1010
pub enum UploadCompression {
1111
Off,
1212
/// On is the default, with the exact compression algorithm being

0 commit comments

Comments
 (0)