(&self, state: &mut H)
| 110 | |
| 111 | impl<T: ?Sized> std::hash::Hash for RefEquality<Rc<T>> { |
| 112 | fn hash<H>(&self, state: &mut H) |
| 113 | where |
| 114 | H: std::hash::Hasher, |
| 115 | { |
| 116 | (self.0.as_ref() as *const T).hash(state) |
| 117 | } |
| 118 | } |
| 119 | |
| 120 | impl<'a, T: ?Sized> std::hash::Hash for RefEquality<&'a T> { |
nothing calls this directly
no outgoing calls
no test coverage detected