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
{{ message }}
This repository has been archived by the owner on Sep 12, 2024. It is now read-only.
Do you think it would be possible to change that and include it for all others whose kind is not io::ErrorKind::Other? I realise that this is probably a breaking change, but I wonder if there is that much code out there using io::Error::new with a kind different to io::ErrorKind::Other.
The text was updated successfully, but these errors were encountered:
Do we know the rationale behind not printing them in the first place? I presume that unwillingness to print out every member of the io::ErrorKind enum was the main reason.
The implementation of
Display
for io::Error currently completely omits the kind of the error for errors created withio::Error::new
.Do you think it would be possible to change that and include it for all others whose kind is not
io::ErrorKind::Other
? I realise that this is probably a breaking change, but I wonder if there is that much code out there usingio::Error::new
with a kind different toio::ErrorKind::Other
.The text was updated successfully, but these errors were encountered: