macro_rules! never {
() => { ... };
($t:ty) => { ... };
}
Expand description
Generates an asynchronous expression that yields a future which never resolves. This macro conditionally produces a pending future, either using the default type or a specified type parameter, blocking execution indefinitely when awaited.