Function core::future::pending

1.48.0 · source · []
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 which never resolves, representing a computation that never finishes.

Examples

use std::future;

let future = future::pending();
let () = future.await;
unreachable!();
Run