/**
A future that does nothing, pending forever.
This is for rendering things without children, for example
```
# use async_ui_web::html::Span;
# use async_ui_web::NoChild;
# let _ = async {
let span = Span::new();
span.render(NoChild).await;
# };
```
Functionally, this is no different from what [std::future::pending] provides.
*/
;