pub trait IntoKeyGenerator<K, Inputs, Marker> {
type Generator: KeyGenerator<K, Inputs>;
// Required method
fn into_key_gen(self) -> Self::Generator;
}
Expand description
Something that can be turned into a key generator
Required Associated Types§
Sourcetype Generator: KeyGenerator<K, Inputs>
type Generator: KeyGenerator<K, Inputs>
The concrete key generator type
Required Methods§
Sourcefn into_key_gen(self) -> Self::Generator
fn into_key_gen(self) -> Self::Generator
Turn this type into a concrete key generator