pub trait Membership {
    fn add(&mut self, element: &[u8]);
    fn contains(&self, element: &[u8]) -> bool;
    fn clear(&mut self);
}
Expand description

filter for check whether membership.

Required Methods

Implementors