Open
Description
Feature gate: #![feature(stream_pending)]
This is a tracking issue for core::stream::{pending, Pending}
, a stream that always returns Poll::Pending
.
Public API
// core::stream
pub fn pending<T>() -> Pending<T> { ... }
pub struct Pending<T> { ... }
impl<T> Stream for Pending<T> { ... }
Steps / History
- Implementation: Add
core::stream::pending
#91684 - Final comment period (FCP)
- Stabilization PR
Unresolved Questions
- None yet.