pub async fn async_run_error_handle_function<E: AsyncErrorHandlerFunction>(
func: E,
error: Arc<String>,
) -> AsyncSpawnResultExpand description
Executes an error-handling function with a given error message within a panic-safe context.
func: A function implementing theAsyncErrorHandlerFunctiontrait.error: A string slice representing the error message.- Returns: A
AsyncSpawnResultindicating the success or failure of the error-handling function execution.