```impl hash::Hash for Key { fn hash<H: hash:...
# development
r
Copy code
impl hash::Hash for Key {
  fn hash<H: hash::Hasher>(&self, state: &mut H) {
    self.key.hash(state);
  }
}