Update buffer service (#452)

This commit is contained in:
Nikolay Kim 2024-11-03 13:39:11 +05:00 committed by GitHub
parent a30147120d
commit c303d02f89
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 92 additions and 48 deletions

View file

@ -28,6 +28,8 @@ where
poll_fn(|cx| Pin::new(&mut *stream).poll_next(cx)).await
}
#[doc(hidden)]
#[deprecated]
/// A future that completes after the given item has been fully processed
/// into the sink, including flushing.
pub async fn sink_write<S, I>(sink: &mut S, item: I) -> Result<(), S::Error>