(&self, other: &Self)
| 762 | |
| 763 | impl<T: SymbolData> PartialEq for Symbol<T> { |
| 764 | fn eq(&self, other: &Self) -> bool { |
| 765 | self.id == other.id && self.data == other.data |
| 766 | } |
| 767 | } |
| 768 | |
| 769 | impl<T: SymbolData> Symbol<T> { |
no outgoing calls
no test coverage detected