Function blocking_wrapper

Source
pub async fn blocking_wrapper<F, R>(
    name: &str,
    blocking_task: F,
    err_result: R,
) -> R
where F: FnOnce() -> R + Send + 'static, R: Send + 'static,