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

Associated Types

Required methods

Implementations on Foreign Types

Implementors