[][src]Trait counters::filters::Filter

pub trait Filter {
    fn apply(&mut self, key: &str, value: u64) -> bool;
}

Required methods

fn apply(&mut self, key: &str, value: u64) -> bool

Loading content...

Implementations on Foreign Types

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

Loading content...

Implementors

impl Filter for All[src]

impl Filter for GreaterThan[src]

impl Filter for LessThan[src]

impl<'l> Filter for Contains<'l>[src]

impl<'l> Filter for EndsWith<'l>[src]

impl<'l> Filter for StartsWith<'l>[src]

impl<F: FnMut(&str, u64) -> bool> Filter for Select<F>[src]

Loading content...