pub fn async_run_error_handle_function<E>(
func: E,
error: Arc<String>,
) -> Result<(), JoinError>where
E: AsyncErrorHandlerFunction,
Expand description
Executes an error-handling function with a given error message within a panic-safe context.
func
: A function implementing theAsyncErrorHandlerFunction
trait.error
: A string slice representing the error message.- Returns: A
AsyncSpawnResult
indicating the success or failure of the error-handling function execution.