Derive Debug for Configuration (#759)

This commit is contained in:
Lena Hellström 2025-03-10 19:07:44 +01:00 committed by GitHub
parent bb3e60c94c
commit ee23e86743
1 changed files with 1 additions and 1 deletions

View File

@ -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 = LittleEndian, I = Varint, L = NoLimit> {
_e: PhantomData<E>,
_i: PhantomData<I>,