Skip to content

Commit 2838395

Browse files
goto-bus-stopseanmonstar
authored andcommitted
Appease clippy
1 parent 4de94f4 commit 2838395

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

http-body-util/src/combinators/frame.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use core::task;
99
/// Future that resolves to the next frame from a [`Body`].
1010
pub struct Frame<'a, T: ?Sized>(pub(crate) &'a mut T);
1111

12-
impl<'a, T: Body + Unpin + ?Sized> Future for Frame<'a, T> {
12+
impl<T: Body + Unpin + ?Sized> Future for Frame<'_, T> {
1313
type Output = Option<Result<http_body::Frame<T::Data>, T::Error>>;
1414

1515
fn poll(mut self: Pin<&mut Self>, ctx: &mut task::Context<'_>) -> task::Poll<Self::Output> {

0 commit comments

Comments
 (0)