From 32ca3844864de2f189d651d720c17b76b7bf5279 Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Sun, 3 Nov 2024 12:21:09 +0500 Subject: [PATCH] tests --- ntex-util/src/future/mod.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ntex-util/src/future/mod.rs b/ntex-util/src/future/mod.rs index 6620dbd7..675b31eb 100644 --- a/ntex-util/src/future/mod.rs +++ b/ntex-util/src/future/mod.rs @@ -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(sink: &mut S, item: I) -> Result<(), S::Error>