我有一个自制的迭代器,我想循环它,在线程池中执行一些昂贵的处理,并按输入顺序收集结果。
我使用这个链:
Iterator > enumerate() > rayon par_bridge() > map()
当我使用此链并将collect()
其放入向量中时,没有任何问题,但当我使用 for 循环时,我收到错误,提示某些内容不是迭代器。
我不明白其中的区别。
这是 MRE:
use std::vec::IntoIter;
use rayon::prelude::*;
fn main() {
// collecting();
for_loop();
}
fn collecting() {
let some_vec = (1..100).collect::<Vec<u8>>();
let x_iter = AA {y: some_vec.into_iter()};
let with_index: Vec<(usize, u8)> = x_iter
.enumerate()
.par_bridge()
.map(|(i, x)| {(i, x - 1)})
.collect();
println!("{:?}", with_index);
}
fn for_loop() {
let some_vec = (1..100).collect::<Vec<u8>>();
let x_iter = AA {y: some_vec.into_iter()};
let mut with_index: Vec<(usize, u8)> = Vec::with_capacity(99);
for x in x_iter
.enumerate()
.par_bridge() // with this line commented out it works fine
.map(|(i, x)| {(i, x - 1)})
{
with_index.push(x);
}
println!("{:?}", with_index);
}
struct AA {
y: IntoIter<u8>
}
impl Iterator for AA {
type Item = u8;
fn next(&mut self) -> Option<u8> {
self.y.next()
}
}
该collecting
函数运行正常。
该for_loop
函数给出以下错误:
rayon::iter::Map<IterBridgestd::iter::Enumerate<AA>, {closure@src/main.rs:30:14: 30:22}> 不是迭代器
请解释我为什么会收到这个错误。