Callbacks

Type Alias Callbacks 

Source
pub type Callbacks = HashMap<Event, Arc<dyn Fn(&Document) -> Pin<Box<dyn Future<Output = ()> + Send>> + Send + Sync>>;
Expand description

A collection of callbacks mapped to their respective event types.

This type maps Event types to their corresponding callback functions.

Aliased Typeยง

pub struct Callbacks { /* private fields */ }