Expand description
New functions for &(mut) dyn [FusedIterator].
Functions§
- new
- Create a dyn slice from a slice of a type that implements
FusedIterator. - new_mut
- Create a mutable dyn slice from a mutable slice of a type that implements
FusedIterator.
Type Aliases§
- Dyn
- An alias for
dynFusedIterator. - Slice
- An alias for
&dyn [FusedIterator](DynSlice<Dyn>). - Slice
Mut - An alias for
&mut dyn [FusedIterator](DynSliceMut<Dyn>).