Type Alias HookFuture

Source
pub type HookFuture<'a, E> = Pin<Box<dyn Future<Output = Result<(), HookError<E>>> + Send + 'a>>;
Expand description

The boxed future that should be returned by async hooks

Aliased Typeยง

pub struct HookFuture<'a, E> { /* private fields */ }