Skip to content
  • Alexis Beingessner's avatar
    make FromIterator use IntoIterator · 66613e26
    Alexis Beingessner authored
    This breaks all implementors of FromIterator, as they must now accept IntoIterator instead of Iterator. The fix for this is generally trivial (change the bound, and maybe call into_iter() on the argument to get the old argument).
    
    Users of FromIterator should be unaffected because Iterators are IntoIterator.
    
    [breaking-change]
    66613e26