(&self, other: &WeakComponentLink<T>)
| 27 | |
| 28 | impl<T: Component> PartialEq for WeakComponentLink<T> { |
| 29 | fn eq(&self, other: &WeakComponentLink<T>) -> bool { |
| 30 | Rc::ptr_eq(&self.0, &other.0) |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | // OLD |
nothing calls this directly
no outgoing calls
no test coverage detected