pub trait PerseusRoute<G: Html>: Route + Clone {
    fn get_verdict(&self) -> &RouteVerdict<G>;
}
Expand description

A trait for the routes in Perseus apps. This should be used almost exclusively internally, and you should never need to touch it unless you’re building a custom engine.

Required Methods

Gets the route verdict for the current route.

Implementors