-
Notifications
You must be signed in to change notification settings - Fork 38
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
feat: implement Hash for MessageChannel #226
Conversation
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.
Concept ACK but can you add unit tests please?
Updated. The failing check seems unrelated to my changes, and I can't repro it locally. |
I'll see if I can quickly fix that. |
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.
Awesome stuff, thank you for adding these tests!
I've opened #227 to fix CI need to wait for @Restioson to approve it! |
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.
Apologies for getting to this late; I've been at a conference
@jcdickinson Can you rebase on latest master? |
Done! |
This adds the
Hash
trait toMessageChannel
. I need this in my project to use aMessageChannel
as a key in aHashMap
(as actor types are generally unknown for my use case). Pairs with the existingPartialEq
.