(&self, other: &Self)
| 1131 | |
| 1132 | impl PartialEq for Coercion { |
| 1133 | fn eq(&self, other: &Self) -> bool { |
| 1134 | self.desired_type() == other.desired_type() |
| 1135 | && self.implicit_coercion() == other.implicit_coercion() |
| 1136 | } |
| 1137 | } |
| 1138 | |
| 1139 | impl Hash for Coercion { |
no test coverage detected