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 Oct 15, 2022. It is now read-only.
Currently, we use the
?
operator a lot to propagatestd::io::Errors
and then wrap them and throw them outward.The problem with
FileNotFound
errors is that these don’t contain the path of the file that is missing, so the resulting error trace is mostly useless.We can either manually wrap these, or use an error crate like eyre.
The text was updated successfully, but these errors were encountered: