futures_lite::stream
pub fn pending<T>() -> Pending<T>
Creates a stream that is always pending.
use futures_lite::*; let mut s = stream::pending::<i32>(); s.next().await; unreachable!();