pub trait IterTypeMut {
    // Provided method
    fn iter_type_mut<T>(&mut self) -> TypeIterMut<'_, T> 
       where Self: IntoIterTypeMut<T> { ... }
}

Provided Methods§

source

fn iter_type_mut<T>(&mut self) -> TypeIterMut<'_, T>
where Self: IntoIterTypeMut<T>,

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> IterTypeMut for T