From ee23e86743c7c044633e00fa063b395c806cbe1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lena=20Hellstr=C3=B6m?= Date: Mon, 10 Mar 2025 19:07:44 +0100 Subject: [PATCH] Derive Debug for Configuration (#759) --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index 684b334..3642677 100644 --- a/src/config.rs +++ b/src/config.rs @@ -32,7 +32,7 @@ use core::marker::PhantomData; /// [with_big_endian]: #method.with_big_endian /// [with_fixed_int_encoding]: #method.with_fixed_int_encoding /// [with_variable_int_encoding]: #method.with_variable_int_encoding -#[derive(Copy, Clone)] +#[derive(Copy, Clone, Debug)] pub struct Configuration { _e: PhantomData, _i: PhantomData,