pub trait RouteInfo: Display + Debug {
// Required methods
fn path(&self) -> &str;
fn is_wildcard(&self) -> bool;
}Expand description
Information about a parsed route.
Required Methods§
Sourcefn is_wildcard(&self) -> bool
fn is_wildcard(&self) -> bool
Returns true if this route has a trailing wildcard.