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
And this does cause some weird issues. I'm using the FileCache implementation provided with the crate, which returns an std::io::Error in practice when something goes wrong. The info in that error type could be useful to the user, but because of the way the trait is defined, I can't use the Display implementation of that type. Printing it with Debug looks pretty goofy and is comparatively hard to read if I am actually interested in the error message.
I think that errors meant to be printed to the console should generally be assumed to implement Display at least, but also the Error trait was made specifically for this kind of situation.