blob: fa52f16d8a53d7d78921f66e5ab9cb78ddc3852b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/// The hasher used to compare layouts.
#[derive(Debug, Default)]
pub struct Hasher(twox_hash::XxHash64);
impl core::hash::Hasher for Hasher {
fn write(&mut self, bytes: &[u8]) {
self.0.write(bytes)
}
fn finish(&self) -> u64 {
self.0.finish()
}
}
|