pub trait ContainsStr {
    // Required method
    fn contains_str(&self, str: &str) -> bool;
}

Required Methods§

source

fn contains_str(&self, str: &str) -> bool

Implementations on Foreign Types§

source§

impl ContainsStr for Vec<String>

source§

fn contains_str(&self, str: &str) -> bool

Implementors§