pub trait PrimaryKeyFilter: Send + Sync { // Required method fn matches(&mut self, pk: &[u8]) -> bool; }
Returns true if the primary key matches the filter.