pub type HookHandlerChain<T> = Vec<HookHandler<T>>;Expand description
A type alias for a hook hook chain.
This type is used to represent a chain of middleware or hooks that can be executed sequentially.
Aliased Typeยง
pub struct HookHandlerChain<T> { /* private fields */ }