* pin all alpha dependencies

* fix some clippy warnings
This commit is contained in:
Juan Alvarez
2019-10-01 15:55:58 -04:00
committed by Lucio Franco
parent cd0b8424b9
commit 56e89385b3
9 changed files with 14 additions and 14 deletions
+2 -2
View File
@@ -117,7 +117,7 @@ where
}
fn poll_data(
mut self: Pin<&mut Self>,
self: Pin<&mut Self>,
cx: &mut Context<'_>,
) -> Poll<Option<Result<Self::Data, Self::Error>>> {
let mut self_proj = self.project();
@@ -135,7 +135,7 @@ where
}
fn poll_trailers(
mut self: Pin<&mut Self>,
self: Pin<&mut Self>,
_cx: &mut Context<'_>,
) -> Poll<Result<Option<HeaderMap>, Status>> {
match self.role {