-
Notifications
You must be signed in to change notification settings - Fork 2
Remove scanner error enum #200
New issue
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
Conversation
0xNeshi
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looking better, close to merging
| } | ||
|
|
||
| impl<T: Clone, E: Error + Clone> PartialEq<Notification> for ScannerMessage<T, E> { | ||
| impl<T: Clone> PartialEq<Notification> for ScannerMessage<T> { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Try to implement impl<T: Clone> PartialEq<ScannerError> for Result<ScannerResult<T>> {, should make additional assert_next! variants redundant
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
related #200 (comment)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
okay done! good catch.
Man i hate working with macros sometimes, the LSP doesnt help much
Resolves #181