pub type AsyncCallback<T> = Arc<dyn Fn(T) -> Pin<Box<dyn Future<Output = ()> + Send>> + Send + Sync>;
Type alias for async callback closures used by the Monitor.
pub struct AsyncCallback<T> { /* private fields */ }