Trait path_matchers::PathMatcherExt[][src]

pub trait PathMatcherExt: PathMatcher + Sized {
    fn and<R: PathMatcher>(self, right: R) -> PathMatcherAnd<Self, R> { ... }
fn or<R: PathMatcher>(self, right: R) -> PathMatcherOr<Self, R> { ... } }

Extends PathMatcher with combinator functions.

Provided methods

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

fn or<R: PathMatcher>(self, right: R) -> PathMatcherOr<Self, R>[src]

Loading content...

Implementors

impl<F> PathMatcherExt for F where
    F: PathMatcher + Sized
[src]

Loading content...