-
Notifications
You must be signed in to change notification settings - Fork 462
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Before this change, errors from other libraries (eg `serde::de::Error`) were converted to a context error where the context was named after the library (eg `ErrorKind::Serde`). This change replaces these contexts with meaningful descriptions of the actual operation going on (eg `InvalidModuleName(String)`). The `From<other_library::Error> for this_crate::Error` impls have also been removed, since the generic error kinds these impls relied on no longer exist, and to ensure that new error kind contexts are added in the future as necessary.
- Loading branch information
Showing
109 changed files
with
4,012 additions
and
3,834 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Oops, something went wrong.