pub trait RouteAlgExt<This>: RouteAlg + Sizedwhere
This: RouteAlg,{
// Required methods
fn routes(&self) -> Routes<'_, Self>;
fn route(&self, route: This::Route) -> Routes<'_, Self>;
}Expand description
Provides fluent route composition on any RouteAlg.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Implementors§
impl<This> RouteAlgExt<This> for Thiswhere
This: RouteAlg,
Provides fluent route composition on any RouteAlg.