pub trait PathReq { // Required method fn path(&self) -> &str; }
A request that has a path.
This trait is required when using #[derive(Param)] or #[route] attribute.
#[derive(Param)]
#[route]
The associated path.