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 was 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 implementation of
Displayfor 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::newwith a kind different toio::ErrorKind::Other.