use crate::*;
/// A type alias for a handler function.
///
/// This type represents a boxed async function that processes a context.
pub type HandlerFunc =
;
/// A type alias for a list of handler functions.
pub type HandlerList = ;
/// A type alias for an arc-wrapped list of handlers.
pub type HandlerListArc = ;
/// A type alias for a RwLock-wrapped arc of handler list.
pub type HandlerListArcLock = ;