You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have an idea! maybe you could use generics in the DebugPls trait, such that it's automatically implemented on every type that implements Debug? That way, we can get around the orphan rule so that DebugPls automatically works whenever Debug works, especially for 3rd party crates
I have a struct containing a
serde_json::Value
field like this:Orphan rule doesn't let me apply
DebugPls
onserde_json::Value
. Can you apply it (behind aserde
feature)?I think it's good to also apply std
dbg!
as a fallback for cases where I wanna use a 3rd party type for which DebugPls hasn't been implementedThe text was updated successfully, but these errors were encountered: