Trait PathMatcherExt

Source
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§

Source

fn and<R: PathMatcher>(self, right: R) -> PathMatcherAnd<Self, R>

Source

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.

Implementors§

Source§

impl<F> PathMatcherExt for F
where F: PathMatcher + Sized,