Trait frame_support::ReversibleStorageHasher [−][src]
Hasher to use to hash keys to insert to storage.
Reversible hasher store the encoded key after the hash part.
Required methods
fn reverse(x: &[u8]) -> &[u8]ⓘ
[src]
Split the hash part out of the input.
I.e. for input &[hash ++ key ++ some]
returns &[key ++ some]