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
The Event enum implements its own Debug and shows only the discriminant (eg. Event::KeyUp), without the content. Is there an actual reason not to just derive it and get all the content? The content seems useful in logs.
The text was updated successfully, but these errors were encountered:
Related to #740 which was just merged; the main reason is that that part of the code was from 3 years ago, and I think "#[derive]" was not really a thing before 1.0 rust.
Anyway, the PR was just merged to if you use master you should be able to have the proper Debug implementation for Event.
Hello
The
Event
enum implements its ownDebug
and shows only the discriminant (eg.Event::KeyUp
), without the content. Is there an actual reason not to just derive it and get all the content? The content seems useful in logs.The text was updated successfully, but these errors were encountered: