pub async fn async_run_function<F>(func: F) -> Result<(), JoinError>where
F: AsyncRecoverableFunction,
Expand description
Executes a recoverable function within a panic-safe context.
func
: A function implementing theAsyncRecoverableFunction
trait.- Returns: A
AsyncSpawnResult
indicating the success or failure of the function execution.