pub trait GetHash {
// Required method
fn get_hash(&self) -> u64;
}Expand description
Returns a deterministic 64-bit hash for content-based deduplication.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".