【发布时间】:2014-10-12 16:53:32
【问题描述】:
我可以在 struct Route 中设置 Waypoint 的生命周期。在结构 AMoreDifferentRoute 我使用特征 Coord 并得到错误
需要明确的生命周期限制
在这种情况下,您如何设置特征的生命周期?
extern crate collections;
use super::wp;
use coord::Coord;
pub struct Route<'a> {
waypoints: &'a Vec<wp::Waypoint>
}
pub struct AMoreDifferentRoute<'a> {
waypoints: &'a Vec<Coord>
}
【问题讨论】: