Skip to content

Commit 5500e5e

Browse files
authored
Derive Debug for Configuration (#759)
1 parent 89e4c40 commit 5500e5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/config.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ use core::marker::PhantomData;
3232
/// [with_big_endian]: #method.with_big_endian
3333
/// [with_fixed_int_encoding]: #method.with_fixed_int_encoding
3434
/// [with_variable_int_encoding]: #method.with_variable_int_encoding
35-
#[derive(Copy, Clone)]
35+
#[derive(Copy, Clone, Debug)]
3636
pub struct Configuration<E = LittleEndian, I = Varint, L = NoLimit> {
3737
_e: PhantomData<E>,
3838
_i: PhantomData<I>,

0 commit comments

Comments
 (0)