You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the context of the above example, a `T: ResultIterator` bound would mean
653
+
"there exist unique types `Ok` and `Err` such that
654
+
`T: Iterator<Item = Result<Ok, Err>>` holds". Current Rust provides no mechanism
655
+
for expressing a bound like that; you need a separate trait, like [`TryFuture`](https://docs.rs/futures-core/latest/futures_core/future/trait.TryFuture.html).
656
+
657
+
This feature could even allow GATification of `Iterator` (or `FnMut`, etc)
0 commit comments