pub trait PathSyntaxAlg {
// Required methods
fn param(&self, name: &str) -> String;
fn tail(&self, name: &str) -> String;
}Expand description
Spells route-path parameters the way one router reads them.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".