Trait net::mime_classifier::Matches

source ·
trait Matches {
    // Required method
    fn matches(&mut self, matches: &[u8]) -> bool;
}

Required Methods§

source

fn matches(&mut self, matches: &[u8]) -> bool

Implementors§

source§

impl<'a, T: Iterator<Item = &'a u8> + Clone> Matches for T