pub trait FingerprintHasher: Hasher {
// Required method
fn finish_fingerprint(self) -> (Fingerprint, Vec<u8>);
}Expand description
A fingerprint hasher that extends the std::hash::Hasher trait.
Required Methods§
Sourcefn finish_fingerprint(self) -> (Fingerprint, Vec<u8>)
fn finish_fingerprint(self) -> (Fingerprint, Vec<u8>)
Finish the fingerprint and return the fingerprint and the data. The data is used to resolve the conflict.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".