We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78c5d85 commit 396d527Copy full SHA for 396d527
futures-util/src/compat/executor.rs
@@ -66,8 +66,8 @@ pub struct Executor01As03<Ex> {
66
}
67
68
impl<Ex> Spawn03 for Executor01As03<Ex>
69
-where Ex: Executor01<Executor01Future>,
70
- Ex: Clone + Send + 'static,
+where
+ Ex: Executor01<Executor01Future> + Clone + Send + 'static,
71
{
72
fn spawn_obj(
73
&mut self,
futures-util/src/stream/zip.rs
@@ -14,6 +14,7 @@ pub struct Zip<St1: Stream, St2: Stream> {
14
queued2: Option<St2::Item>,
15
16
17
+#[allow(clippy::type_repetition_in_bounds)] // https://github.com/rust-lang/rust-clippy/issues/4323
18
impl<St1, St2> Unpin for Zip<St1, St2>
19
where
20
St1: Stream,
0 commit comments