pub trait IntoKeyCustomization {
    type T: KeyCustomization;

    fn into_key_customization(self) -> Option<Self::T>;
}
Expand description

IntoKeyCustomization transforms a type into a type that support KeyCustomization

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors