pub trait IntoRefMutIterator {
type Item: ?Sized;
type IntoRefMutIter: RefMutIterator<Item = Self::Item>;
// Required method
fn into_ref_mut_iter(self) -> Self::IntoRefMutIter;
}Expand description
Conversion into an RefMutIterator.
Required Associated Types§
Sourcetype IntoRefMutIter: RefMutIterator<Item = Self::Item>
type IntoRefMutIter: RefMutIterator<Item = Self::Item>
Which kind of iterator are we turning this into?
Required Methods§
Sourcefn into_ref_mut_iter(self) -> Self::IntoRefMutIter
fn into_ref_mut_iter(self) -> Self::IntoRefMutIter
Creates an iterator from a value.