We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ibc
Deriving Debug, PartialEq and Eq for module errors will allow library users to match against these errors and react in specific ways.
Debug
PartialEq
Eq
Ideally, all public lib errors should derive Debug, PartialEq and Eq ->
define_error! { #[derive(Debug, PartialEq, Eq)] Error { // ...
Library users must be able to pattern match against specific errors.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Crate
ibc
Summary
Deriving
Debug
,PartialEq
andEq
for module errors will allow library users to match against these errors and react in specific ways.Proposal
Ideally, all public lib errors should derive
Debug
,PartialEq
andEq
->Acceptance Criteria
Library users must be able to pattern match against specific errors.
For Admin Use
The text was updated successfully, but these errors were encountered: