macro_rules! chain {
($first:expr, $($rest:expr),+ $(,)?) => { ... };
}Expand description
A macro to chain multiple middlewares together.
This macro takes a list of middlewares and chains them together.
macro_rules! chain {
($first:expr, $($rest:expr),+ $(,)?) => { ... };
}A macro to chain multiple middlewares together.
This macro takes a list of middlewares and chains them together.