【发布时间】:2017-12-04 11:15:16
【问题描述】:
我已经掌握了 Rust 生命周期的基础知识以及如何在其中使用迭代器,但仍然难以定义一个函数,该函数接受一个可迭代的元组并返回一个也分配在堆上的可迭代元组。
(我知道“可迭代”在 Rust 中没有任何意义,但我仍然会使用它而不是 IntoInterator)
use std::iter::{once, repeat};
fn foo<'a, I>(costs: I) -> Box<Iterator<Item = &'a (i32, f32)>>
where
I: IntoIterator<Item = &'a (usize, f32)>,
{
let preliminary_examination_costs = once(10.0).chain(repeat(20.0));
let id_assignment_costs = once(10.0).chain(repeat(20.0));
let batch_fixed = once(10.0).chain(repeat(0.0));
let temp: Vec<(usize, &(i32, f32))> = costs.into_iter().enumerate().collect();
temp.sort_by_key(|&(_, &(n, cost))| n);
Box::new(temp.into_iter().map(|(i, &(n, cost))| {
(
i,
cost + preliminary_examination_costs.next().unwrap()
+ id_assignment_costs.next().unwrap() + batch_fixed.next().unwrap(),
)
}))
}
以下是错误:
error[E0277]: the trait bound `std::vec::Vec<(usize, &(i32, f32))>: std::iter::FromIterator<(usize, &'a (usize, f32))>` is not satisfied
--> src/main.rs:10:73
|
10 | let temp: Vec<(usize, &(i32, f32))> = costs.into_iter().enumerate().collect();
| ^^^^^^^ a collection of type `std::vec::Vec<(usize, &(i32, f32))>` cannot be built from an iterator over elements of type `(usize, &'a (usize, f32))`
|
= help: the trait `std::iter::FromIterator<(usize, &'a (usize, f32))>` is not implemented for `std::vec::Vec<(usize, &(i32, f32))>`
error[E0271]: type mismatch resolving `<[closure@src/main.rs:12:35: 18:6 preliminary_examination_costs:_, id_assignment_costs:_, batch_fixed:_] as std::ops::FnOnce<((usize, &(i32, f32)),)>>::Output == &(i32, f32)`
--> src/main.rs:12:5
|
12 | / Box::new(temp.into_iter().map(|(i, &(n, cost))| {
13 | | (
14 | | i,
15 | | cost + preliminary_examination_costs.next().unwrap()
16 | | + id_assignment_costs.next().unwrap() + batch_fixed.next().unwrap(),
17 | | )
18 | | }))
| |_______^ expected tuple, found &(i32, f32)
|
= note: expected type `(usize, f32)`
found type `&(i32, f32)`
= note: required because of the requirements on the impl of `std::iter::Iterator` for `std::iter::Map<std::vec::IntoIter<(usize, &(i32, f32))>, [closure@src/main.rs:12:35: 18:6 preliminary_examination_costs:_, id_assignment_costs:_, batch_fixed:_]>`
= note: required for the cast to the object type `std::iter::Iterator<Item=&(i32, f32)>`
【问题讨论】:
-
您的代码存在的问题比您似乎提到的要多。
usize不会隐式转换为i32。另外,由于您在最后执行映射到新元组,返回的可迭代项不应再是绑定到'a生命周期的引用。 -
从外观上看,您正在寻找类似this 的东西。但是,如果没有针对您的特定问题量身定制的调试会话,我无法找到解决您问题的方法,将其保留为 Stack Overflow 问题几乎没有什么好处。