(&self, state: &mut H)
| 1138 | |
| 1139 | impl Hash for Coercion { |
| 1140 | fn hash<H: std::hash::Hasher>(&self, state: &mut H) { |
| 1141 | self.desired_type().hash(state); |
| 1142 | self.implicit_coercion().hash(state); |
| 1143 | } |
| 1144 | } |
| 1145 | |
| 1146 | /// Defines rules for implicit type coercion, specifying which source types can be |
no test coverage detected