Expand description
Object safe variants of Iterable, Collection and CollectionMut traits.
Traitsยง
- Collection
MutObj - In addition to
boxed_iter, aCollectionMutObjprovides theboxed_iter_mutmethod which returns a boxed iterator over mutable references of elements of the collection. - Collection
Obj - A
CollectionObjprovides theboxed_itermethod which returns a boxed iterator over shared references of elements of the collection. - Iterable
Obj - An
IterableObjis any type which can return a new boxed iterator that yields elements of the associated typeItemevery timeboxed_itermethod is called.