/*
appellation: hash <module>
authors: @FL03
*/usesuper::hasher::Hasher;/// The [`Hash`] trait establishes a common interface for hashing types.
pubtraitHash{typeHasher: Hasher;typeOutput;}#[doc(hidden)]// [`Hashable`] is a marker trait for types that can be hashed.
pubtraitHashable{private!();}