pub trait IntoKeyCustomization {
type T: KeyCustomization;
// Required method
fn into_key_customization(self) -> Option<Self::T>;
}
Expand description
IntoKeyCustomization transforms a type into a type that support KeyCustomization
pub trait IntoKeyCustomization {
type T: KeyCustomization;
// Required method
fn into_key_customization(self) -> Option<Self::T>;
}
IntoKeyCustomization transforms a type into a type that support KeyCustomization