pub async fn with_hydration_context_async<F, R>(f: F) -> impl Future<Output = R>where
    F: Future<Output = R>,
Expand description

Run the async future inside a hydration context. If already inside a hydration context, creates a nested context.

Same as with_hydration_context but allows for async futures.