Add types::Payload::recv() and types::Payload::poll_recv() methods

This commit is contained in:
Nikolay Kim 2022-01-19 16:45:10 +06:00
parent 14a1cd0b12
commit 05f3231180
6 changed files with 34 additions and 11 deletions

View file

@ -46,6 +46,7 @@ where
}
#[doc(hidden)]
#[deprecated(since = "0.1.4", note = "Use stream_recv() fn instead")]
pub async fn next<S>(stream: &mut S) -> Option<S::Item>
where
S: Stream + Unpin,