Skip to main content
A trait for values that can be hashed. This trait should be implemented for any type that can be included in a hash calculation. The most common way to implement this trait is by using #[derive(Hash)].

Signature

Trait functions

update_state

Updates the hash state with the given value and returns a new hash state.

Signature

Examples