Fix encoding, more interop and update nightly version

This commit is contained in:
Lucio Franco
2019-08-21 18:50:27 -04:00
parent 8dc1185a36
commit 93eb9989d6
23 changed files with 440 additions and 62 deletions
-2
View File
@@ -1,5 +1,3 @@
#![feature(async_await)]
#[macro_use]
extern crate log;
+1 -1
View File
@@ -34,7 +34,7 @@ impl Body for RecvBody {
type Data = Data;
type Error = h2::Error;
fn is_end_stream(self: Pin<&mut Self>) -> bool {
fn is_end_stream(&self) -> bool {
self.inner.is_end_stream()
}