Skip to main content

Traits

ExtendExtend a collection with the contents of an iterator. Iterators produce a series of values, and collections can also be thought of as a series of values. The Extend
FromIteratorConversion from an Iterator . By implementing FromIterator for a type, you define how it will be…
IntoIteratorConversion into an Iterator . By implementing IntoIterator for a type, you define how it will be…