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
anyhow::Error is an opaque type and dynamically dispatched. It can be useful to present errors as an enum in order for downstream users to see what error has occurred.
The text was updated successfully, but these errors were encountered:
Personally, I am not fan neither anyhow or thiserror. I intend to impl all traits manually. Currently, this anyhow is making my debug life worse as it only show top level error by default.
In generate, pull request for removing anyhow is welcome. I can remove thiserror later.
anyhow::Error
is an opaque type and dynamically dispatched. It can be useful to present errors as anenum
in order for downstream users to see what error has occurred.The text was updated successfully, but these errors were encountered: