(&self, state: &mut H)
| 232 | |
| 233 | impl Hash for InternedString<'_> { |
| 234 | fn hash<H: Hasher>(&self, state: &mut H) { |
| 235 | state.write_u64(self.stored_hash()) |
| 236 | } |
| 237 | } |
| 238 | |
| 239 | struct InternedDynStringsInner<'gc>( |
nothing calls this directly
no test coverage detected