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