pub trait Filter {
    const FILTER_TYPE: FilterType;

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

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

Required Associated Constants§

source

const FILTER_TYPE: FilterType

The type of the filter.

Required Methods§

source

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

Get the register level representation of the filter.

Provided Methods§

Implementors§