(&self)
| 248 | } |
| 249 | Self::Interface { |
| 250 | methods, |
| 251 | interfaces, |
| 252 | is_enum, |
| 253 | } => { |
| 254 | interfaces.hash(state); |
| 255 | is_enum.hash(state); |
| 256 | let mut methods = methods.iter().collect::<Vec<_>>(); |
| 257 | methods.sort_unstable_by_key(|(name, _)| *name); |
| 258 | methods.hash(state); |
| 259 | } |
no test coverage detected