ps_hash/implementations/
hash.rs

1use std::hash::Hash;
2
3impl Hash for crate::Hash {
4    fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
5        state.write(&self.inner);
6    }
7}