Trait fluvio_stream_model::store::KeyFilter

source ·
pub trait KeyFilter<V: ?Sized> {
    // Required method
    fn filter(&self, value: &V) -> bool;
}

Required Methods§

source

fn filter(&self, value: &V) -> bool

Implementations on Foreign Types§

source§

impl KeyFilter<str> for str

source§

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

source§

impl KeyFilter<str> for Vec<String>

source§

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

Implementors§