[][src]Trait runtime_cfg::matches::Matcher

pub trait Matcher {
    fn matches(&self, value: &str) -> bool;
}

A matcher for string matching.

Required methods

fn matches(&self, value: &str) -> bool

Loading content...

Implementations on Foreign Types

impl<'_> Matcher for &'_ str[src]

impl<'_, '_> Matcher for &'_ [&'_ str][src]

impl<'_> Matcher for Vec<&'_ str>[src]

impl<T> Matcher for Option<T> where
    T: Matcher
[src]

Loading content...

Implementors

Loading content...