(&self, state: &RandomState)
| 162 | |
| 163 | impl<T: HashValue + ?Sized> HashValue for &T { |
| 164 | fn hash_one(&self, state: &RandomState) -> u64 { |
| 165 | T::hash_one(self, state) |
| 166 | } |
| 167 | fn hash_write(&self, hasher: &mut impl Hasher) { |
| 168 | T::hash_write(self, hasher) |
| 169 | } |
no outgoing calls
no test coverage detected