pub trait ReversibleStorageHasher: StorageHasher {
// Required method
fn reverse(x: &[u8]) -> &[u8] ⓘ;
}
Expand description
Hasher to use to hash keys to insert to storage.
Reversible hasher store the encoded key after the hash part.
Required Methods§
Object Safety§
This trait is not object safe.