Protocol std::hash::Hasher

protocol Hasher<Self> { ... }

Hashing algorithms.

Hasher is a visitor that is accepted by a hashable type through the hash method. Each hasher is a disposable object that is used to hash a single value.

Example

Required methods