-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: remove ambiguity between options and results trait methods
1. Remove the conditional trait methods `context` and `with_context` from `WrapErr` 2. Remove ambiguity between "wrapping errors" with another, and converting a `None` value to an error. The anyhow compatiblity methods (`context` and `with_context`) where introduced as conditional required methods for the trait `WrapErr`, as well as another separate trait `ContextCompat`, implemented for options. The latter trait also provided methods `wrap_err` and `wrap_err_with`. This led to confusion as the two distinct trait had the same methods, except one was implemented on results, and one of options. Further, this did not align with our error model, wherein errors are wrapped with other errors in a chain now that options (which are no errors and have no message) could be "wrapped" See: #149
- Loading branch information
1 parent
34bd1d9
commit 0cc07ae
Showing
3 changed files
with
32 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters