pub trait FilterExt<Data>: Sized where
    Data: ?Sized
{ fn apply(&self, alloc_data: &Data) -> bool; }
Expand description

Function(s) a filter must implement.

Required Methods

Applies the filter to some allocation data.

Implementors