pub trait PathMatcherExt: PathMatcher + Sized {
// Provided methods
fn and<R: PathMatcher>(self, right: R) -> PathMatcherAnd<Self, R> { ... }
fn or<R: PathMatcher>(self, right: R) -> PathMatcherOr<Self, R> { ... }
}
Expand description
Extends PathMatcher
with combinator functions.
Provided Methods§
fn and<R: PathMatcher>(self, right: R) -> PathMatcherAnd<Self, R>
fn or<R: PathMatcher>(self, right: R) -> PathMatcherOr<Self, R>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.