(s: &[u8])
| 163 | } |
| 164 | |
| 165 | fn str_hash(s: &[u8]) -> u64 { |
| 166 | let mut state = AHasher::default(); |
| 167 | state.write(s); |
| 168 | state.finish() |
| 169 | } |
| 170 | |
| 171 | impl fmt::Display for InternedString<'_> { |
| 172 | fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result { |
no test coverage detected