Trait hooks_core::RunHook

source ·
pub trait RunHook<H: Hook<Args>, G: GetArgsForHook<Self, H, Args>, Args> {
    type RunningHook;

    fn run_hook(self, hook: H, get_args: G) -> Self::RunningHook;
}
Expand description

A type implementing RunHook is a hook runner.

Required Associated Types

Required Methods

Implementors