pub trait UrlMatcher: Send + Sync {
// Required method
fn matches(&self, url: &str) -> bool;
}Expand description
Trait for types that can match URLs.
pub trait UrlMatcher: Send + Sync {
// Required method
fn matches(&self, url: &str) -> bool;
}Trait for types that can match URLs.