pub async fn blocking_server_fn<T: Send + 'static>( f: impl FnOnce() -> Result<T, String> + Send + 'static, ) -> Result<T, ServerFnError<String>>
ssr