Trait IntoRefMutIterator

Source
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§

Source

type Item: ?Sized

The type of the elements being iterated over.

Source

type IntoRefMutIter: RefMutIterator<Item = Self::Item>

Which kind of iterator are we turning this into?

Required Methods§

Source

fn into_ref_mut_iter(self) -> Self::IntoRefMutIter

Creates an iterator from a value.

Implementors§