logo
pub trait PathPart: Send + Sync + Debug {
    fn detect(&self, state: &mut PathState) -> bool;
}
Expand description

PathPart

Required Methods

Detect is that path matched.

Implementors