We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04dfaaf commit 340c6a6Copy full SHA for 340c6a6
src/interned.rs
@@ -24,10 +24,6 @@ impl Interned {
24
pub(crate) fn from_existing(value: Arc<[u8]>) -> Self {
25
Self(value)
26
}
27
-
28
- pub fn hash_data<H: Hasher>(&self, state: &mut H) {
29
- self.deref().hash_data(state)
30
- }
31
32
33
pub(crate) static DEFAULT: LazyLock<Interned> = LazyLock::new(|| Interned::new(Default::default()));
0 commit comments