pub trait IntoEntrySet<K, V>: IntoEntry<K, V> {
    fn into_set(self) -> (K, V);
}

Required Methods

Implementors