ps_hash/implementations/
partial_eq.rs

1use crate::Hash;
2
3impl PartialEq for Hash {
4    fn eq(&self, other: &Self) -> bool {
5        self.inner == other.inner
6    }
7}