remove unneeded lifetime annotations
This commit is contained in:
parent
f0b10921b8
commit
279ecfdfb4
@ -97,11 +97,11 @@ macro_rules! http_error_future {
|
|||||||
}}
|
}}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn get_request_parameters_async<'a>(
|
fn get_request_parameters_async(
|
||||||
info: &'a ApiMethod,
|
info: &'static ApiMethod,
|
||||||
parts: Parts,
|
parts: Parts,
|
||||||
req_body: Body,
|
req_body: Body,
|
||||||
) -> Box<Future<Item = Value, Error = failure::Error> + Send + 'a>
|
) -> Box<Future<Item = Value, Error = failure::Error> + Send>
|
||||||
{
|
{
|
||||||
let resp = req_body
|
let resp = req_body
|
||||||
.map_err(|err| Error::from(ApiError::new(StatusCode::BAD_REQUEST, format!("Promlems reading request body: {}", err))))
|
.map_err(|err| Error::from(ApiError::new(StatusCode::BAD_REQUEST, format!("Promlems reading request body: {}", err))))
|
||||||
@ -142,11 +142,11 @@ fn get_request_parameters_async<'a>(
|
|||||||
Box::new(resp)
|
Box::new(resp)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn handle_sync_api_request<'a>(
|
fn handle_sync_api_request(
|
||||||
info: &'a ApiMethod,
|
info: &'static ApiMethod,
|
||||||
parts: Parts,
|
parts: Parts,
|
||||||
req_body: Body,
|
req_body: Body,
|
||||||
) -> Box<Future<Item = Response<Body>, Error = failure::Error> + Send + 'a>
|
) -> BoxFut
|
||||||
{
|
{
|
||||||
let params = get_request_parameters_async(info, parts, req_body);
|
let params = get_request_parameters_async(info, parts, req_body);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user