(&self, other: &RefEquality<Rc<T>>)
| 128 | |
| 129 | impl<T: ?Sized> PartialEq<RefEquality<Rc<T>>> for RefEquality<Rc<T>> { |
| 130 | fn eq(&self, other: &RefEquality<Rc<T>>) -> bool { |
| 131 | self.0.as_ref() as *const T == other.0.as_ref() as *const T |
| 132 | } |
| 133 | } |
| 134 | |
| 135 | impl<'a, 'b, T: ?Sized> PartialEq<RefEquality<&'b T>> for RefEquality<&'a T> { |
nothing calls this directly
no outgoing calls
no test coverage detected