mirror of
https://github.com/rust-lang/rust.git
synced 2026-03-19 15:40:49 +00:00
Implement `FromIterator` for `(impl Default + Extend, impl Default + Extend)` Similarly to how https://github.com/rust-lang/rust/pull/85835 implemented `Extend` for `(impl Extend, impl Extend)`: ```rust impl<A, B, AE, BE> FromIterator<(AE, BE)> for (A, B) where A: Default + Extend<AE>, B: Default + Extend<BE>, { ... } ```