]> git.proxmox.com Git - rustc.git/blobdiff - vendor/rustc-rayon/src/iter/unzip.rs
New upstream version 1.52.0~beta.3+dfsg1
[rustc.git] / vendor / rustc-rayon / src / iter / unzip.rs
index b5a669970a913e54e41bd2b09e0d422cbb7956c1..3c5ff6842920bbb11967e9981e6e39141b1e503a 100644 (file)
@@ -191,7 +191,7 @@ where
 }
 
 /// A fake iterator to intercept the `Consumer` for type `A`.
-struct UnzipA<'b, I, OP, FromB: 'b> {
+struct UnzipA<'b, I, OP, FromB> {
     base: I,
     op: OP,
     b: &'b mut FromB,
@@ -283,7 +283,7 @@ where
 }
 
 /// `Consumer` that unzips into two other `Consumer`s
-struct UnzipConsumer<'a, OP: 'a, CA, CB> {
+struct UnzipConsumer<'a, OP, CA, CB> {
     op: &'a OP,
     left: CA,
     right: CB,
@@ -358,7 +358,7 @@ where
 }
 
 /// `Folder` that unzips into two other `Folder`s
-struct UnzipFolder<'a, OP: 'a, FA, FB> {
+struct UnzipFolder<'a, OP, FA, FB> {
     op: &'a OP,
     left: FA,
     right: FB,