借用的价值没有足够长的时间,由于在闭包中使用而移动 E0597
Borrowed value does not live long enough, moved due to use in closure E0597
我正在 Actix-Web 上迈出第一步。但是这个关闭导致我出错
#[derive(Deserialize, Serialize, Debug, Copy, Clone)]
pub struct PaginationQuery {
pub limit: Option<u32>,
pub offset: Option<u32>,
}
pub fn get_all_trainings_2(
query: web::Query<PaginationQuery>,
pool: web::Data<Pool>,
) -> impl Future<Item = HttpResponse, Error = Error> {
let mut pagination = query.0;
// Thread Blocking
web::block(move || database::get_exercises(pool, pagination)).then(|res| {
match res {
Ok((trainings_list, total)) => {
// let mut list: Vec<TrainingsResponse> = Vec::new();
let list: Vec<TrainingsResponse> = trainings_list
.into_iter()
.map(|tr| TrainingsResponse::from(tr))
.collect();
Ok(HttpResponse::Ok().json(ListResult {
offset: pagination.offset.unwrap_or(0),
total: total as u32,
items: list,
}))
}
Err(_) => Ok(HttpResponse::InternalServerError().into()),
}
})
}
错误:
error[E0597]: `pagination` does not live long enough
--> src\handler.rs:66:29
|
51 | ) -> impl Future<Item = HttpResponse, Error = Error> {
| ----------------------------------------------- opaque type requires that `pagination` is borrowed for `'static`
...
55 | web::block(move || database::get_exercises(pool, pagination)).then(|res| {
| ----- value captured here
...
66 | offset: pagination.offset.unwrap_or(0),
| ^^^^^^^^^^ borrowed value does not live long enough
...
74 | }
| - `pagination` dropped here while still borrowed
我不明白为什么不能第二次使用分页值。这里有什么问题?
第一次使用 pagination
是因为你移动了它,第二次使用将通过移动它来修复:
web::block(move || database::get_exercises(pool, pagination)).then(move |res| { … })
// ^^^^ ^^^^
因为你要返回一个 Future
,它不能借用局部变量,因为它可以活得更久。
您可以移动 pagination
两次,因为 PaginationQuery
是 Copy
。
我正在 Actix-Web 上迈出第一步。但是这个关闭导致我出错
#[derive(Deserialize, Serialize, Debug, Copy, Clone)]
pub struct PaginationQuery {
pub limit: Option<u32>,
pub offset: Option<u32>,
}
pub fn get_all_trainings_2(
query: web::Query<PaginationQuery>,
pool: web::Data<Pool>,
) -> impl Future<Item = HttpResponse, Error = Error> {
let mut pagination = query.0;
// Thread Blocking
web::block(move || database::get_exercises(pool, pagination)).then(|res| {
match res {
Ok((trainings_list, total)) => {
// let mut list: Vec<TrainingsResponse> = Vec::new();
let list: Vec<TrainingsResponse> = trainings_list
.into_iter()
.map(|tr| TrainingsResponse::from(tr))
.collect();
Ok(HttpResponse::Ok().json(ListResult {
offset: pagination.offset.unwrap_or(0),
total: total as u32,
items: list,
}))
}
Err(_) => Ok(HttpResponse::InternalServerError().into()),
}
})
}
错误:
error[E0597]: `pagination` does not live long enough
--> src\handler.rs:66:29
|
51 | ) -> impl Future<Item = HttpResponse, Error = Error> {
| ----------------------------------------------- opaque type requires that `pagination` is borrowed for `'static`
...
55 | web::block(move || database::get_exercises(pool, pagination)).then(|res| {
| ----- value captured here
...
66 | offset: pagination.offset.unwrap_or(0),
| ^^^^^^^^^^ borrowed value does not live long enough
...
74 | }
| - `pagination` dropped here while still borrowed
我不明白为什么不能第二次使用分页值。这里有什么问题?
第一次使用 pagination
是因为你移动了它,第二次使用将通过移动它来修复:
web::block(move || database::get_exercises(pool, pagination)).then(move |res| { … })
// ^^^^ ^^^^
因为你要返回一个 Future
,它不能借用局部变量,因为它可以活得更久。
您可以移动 pagination
两次,因为 PaginationQuery
是 Copy
。