Skip to content
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

Implement std::hash::Hash for Ksuid structs. #7

Merged
merged 1 commit into from
Jan 4, 2024

Conversation

aurelien-clu
Copy link
Contributor

closes #6

Motivation

It would be useful to implement std::hash::Hash so Ksuid and KsuidMs could be stored inside HashSet and used as keys for HashMap without wrapping them or converting them into a string.

Solution

impl Hash for Ksuid {
    fn hash<H: Hasher>(&self, state: &mut H) {
        self.0.hash(state);
    }
}

// same for KsuidMs

Tests:

  • Ksuid and KsuidMs can be stored inside an HashSet
  • hashes are deterministic

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
@aurelien-clu
Copy link
Contributor Author

If the PR is validated, would you like me to add another commit to bump the version and update the changelog? Or you prefer to do it yourself?

@tasn
Copy link
Member

tasn commented Jan 4, 2024

I can do it, will release a version now. Thanks!

@tasn tasn merged commit a3fc564 into svix:main Jan 4, 2024
@aurelien-clu
Copy link
Contributor Author

Thank you 😄

@aurelien-clu aurelien-clu deleted the feat/hash branch January 4, 2024 14:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Make ksuid hashable so it can be used within HashSet & HashMap
2 participants