Skip to main content

next

Macro next 

Source
macro_rules! next {
    () => { ... };
}
Expand description

This macro is just a syntactic sugar over the Ok(MiddlewareResult::Next)

Behavior: Continues execution to the next middleware in the current chain. If used in the last middleware of the global chain, the engine proceeds to route matching.