pub trait IntoEncodedKey {
// Required method
fn into_encoded_key(self) -> EncodedKey;
}Expand description
Trait for types that can be converted into an EncodedKey. Provides convenient conversions from common types to EncodedKey using proper order-preserving encoding.