pub trait IntoRefKvIterator {
type K: ?Sized;
type V: ?Sized;
type IntoRefKvIter: RefKvIterator<K = Self::K, V = Self::V>;
// Required method
fn into_ref_kv_iter(self) -> Self::IntoRefKvIter;
}Expand description
Conversion into an RefKvIterator.
Required Associated Types§
Sourcetype IntoRefKvIter: RefKvIterator<K = Self::K, V = Self::V>
type IntoRefKvIter: RefKvIterator<K = Self::K, V = Self::V>
Which kind of iterator are we turning this into?
Required Methods§
Sourcefn into_ref_kv_iter(self) -> Self::IntoRefKvIter
fn into_ref_kv_iter(self) -> Self::IntoRefKvIter
Creates an iterator from a value.