Function core::future::pending1.48.0[][src]

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