use ;
use crate::;
/// Route handler trait
///
/// This trait is used to define the handler for the routes and middlewares.
/// Result of the handler
///
/// `End` - Stops the execution of the handler chain
///
/// `Next` - Continues the execution of the handler chain
clone_trait_object!;