We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d21bac4 commit 6418bc9Copy full SHA for 6418bc9
CHANGELOG.md
@@ -1,3 +1,3 @@
1
-# Version 0.99.2
+# Version 0.99.3
2
3
- Initial beta release
Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "async-std"
-version = "0.99.2"
+version = "0.99.3"
4
authors = [
5
"Stjepan Glavina <stjepang@gmail.com>",
6
"The async-std Project Developers",
src/io/empty.rs
@@ -62,7 +62,10 @@ impl AsyncRead for Empty {
62
63
impl AsyncBufRead for Empty {
64
#[inline]
65
- fn poll_fill_buf(self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll<io::Result<&[u8]>> {
+ fn poll_fill_buf<'a>(
66
+ self: Pin<&'a mut Self>,
67
+ _: &mut Context<'_>,
68
+ ) -> Poll<io::Result<&'a [u8]>> {
69
Poll::Ready(Ok(&[]))
70
}
71
0 commit comments