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
We will probably eventually need a more advanced convention for error types - we currently just use the one-size-fits-all failure::Error, but this might be hard when we need to match on error types in the future. It might work to use failure::Fail enums everywhere and still use failure::Error then just attempt to downcast, but we should experiment first before applying a convention to the whole codebase.
The text was updated successfully, but these errors were encountered:
We will probably eventually need a more advanced convention for error types - we currently just use the one-size-fits-all
failure::Error
, but this might be hard when we need to match on error types in the future. It might work to usefailure::Fail
enums everywhere and still usefailure::Error
then just attempt to downcast, but we should experiment first before applying a convention to the whole codebase.The text was updated successfully, but these errors were encountered: