pub trait Filter {
    const FILTER_TYPE: FilterType;

    fn to_registers(&self) -> [u8; 8];

    fn filter_type(&self) -> FilterType { ... }
}

Required Associated Constants§

The type of the filter.

Required Methods§

Get the register level representation of the filter.

Provided Methods§

Implementors§