Trait frame_support::storage::types::ReversibleKeyGenerator
source · pub trait ReversibleKeyGenerator: KeyGenerator {
type ReversibleHasher;
// Required method
fn decode_final_key(
key_material: &[u8],
) -> Result<(Self::Key, &[u8]), Error>;
}
Expand description
A trait that indicates the hashers for the keys generated are all reversible.
Required Associated Types§
Required Methods§
Object Safety§
This trait is not object safe.