Skip to main content

AsyncCallback

Type Alias AsyncCallback 

Source
pub type AsyncCallback<T> = Arc<dyn Fn(T) -> Pin<Box<dyn Future<Output = ()> + Send>> + Send + Sync>;
Expand description

Type alias for async callback closures used by the Monitor.

Aliased Typeยง

pub struct AsyncCallback<T> { /* private fields */ }