#[derive(Copy, Clone, Eq, PartialOrd, Ord)]
pub struct Hash64(u64);
impl re_types_core::SizeBytes for Hash64 {
#[inline]
fn heap_size_bytes(&self) -> u64 {
0
}
}
impl Hash64 {
pub const ZERO: Self = Self(0);
pub fn hash(value: impl std::hash::Hash + Copy) -> Self {
Self(hash(value))
}
#[inline]
pub fn from_u64(i: u64) -> Self {
Self(i)
}
#[inline]
pub fn hash64(&self) -> u64 {
self.0
}
}
impl std::hash::Hash for Hash64 {
#[inline]
fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
state.write_u64(self.0);
}
}
impl std::cmp::PartialEq for Hash64 {
#[inline]
fn eq(&self, other: &Self) -> bool {
self.0 == other.0
}
}
impl nohash_hasher::IsEnabled for Hash64 {}
impl std::fmt::Debug for Hash64 {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.write_str(&format!("Hash64({:016X})", self.0))
}
}
pub const HASH_RANDOM_STATE: ahash::RandomState = ahash::RandomState::with_seeds(0, 1, 2, 3);
#[inline]
fn hash(value: impl std::hash::Hash) -> u64 {
HASH_RANDOM_STATE.hash_one(value)
}