Is your feature request related to a problem? Please describe.
I'm trying to debug a Tauri app but a lot of the types don't implement Debug so I often can't just use println!("{:#?}") to get an idea what's happening while debugging.
Describe the solution you'd like
I would like to have Debug implemented on all types exposed through the public API.
Is your feature request related to a problem? Please describe.
I'm trying to debug a Tauri app but a lot of the types don't implement
Debugso I often can't just useprintln!("{:#?}")to get an idea what's happening while debugging.Describe the solution you'd like
I would like to have
Debugimplemented on all types exposed through the public API.