You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
send_all exhausts given stream, so it's probably ok to consume stream. This allows removing the stream's Unpin requirement. Also, since &mut impl Stream + Unpin implements Stream, code using the current version will also work.
It will complete once both the stream is exhausted, the sink has received all items, and the sink has been flushed.
The text was updated successfully, but these errors were encountered:
send_all exhausts given stream, so it's probably ok to consume stream. This allows removing the stream's
Unpin
requirement. Also, since&mut impl Stream + Unpin
implementsStream
, code using the current version will also work.The text was updated successfully, but these errors were encountered: