Expand description
Object safe variants of Iterable, Collection and CollectionMut traits.
Traitsยง
- Collection
MutObj - In addition to
boxed_iter
, aCollectionMutObj
provides theboxed_iter_mut
method which returns a boxed iterator over mutable references of elements of the collection. - Collection
Obj - A
CollectionObj
provides theboxed_iter
method which returns a boxed iterator over shared references of elements of the collection. - Iterable
Obj - An
IterableObj
is any type which can return a new boxed iterator that yields elements of the associated typeItem
every timeboxed_iter
method is called.