Closed carlocorradini closed 5 months ago
Can you expand on why you want this a little @carlocorradini? What information do you need about a Client
that you'd like the Debug
impl to output?
It's just because of a rule of good practice.
A struct
typically derives Debug
and/or Clone
.
It should be feasible for a user's struct
to derive Debug
, however at the moment this isn't possible because Client
doesn't derive Debug
.
Add derive
Debug
toClient