pub fn pending<T>() -> Pending<T>Notable traits for Pending<T>impl<T> Future for Pending<T>    type Output = T;
Expand description

Creates a future that is always pending.

Examples

use futures_lite::future;

future::pending::<()>().await;
unreachable!();