pub trait StringSelector {
    // Required methods
    fn exact_match(&self) -> Option<&str>;
    fn pattern(&self) -> Option<&str>;
}

Required Methods§

source

fn exact_match(&self) -> Option<&str>

source

fn pattern(&self) -> Option<&str>

Implementations on Foreign Types§

source§

impl StringSelector for StringSelector

Implementors§