pub trait ExistenceTarget<S, A, EA, FA, Sc: Score>where
EA: TrackedCollectionExtract<S, Item = A>,
FA: UniFilter<S, A>,{
type Output;
// Required method
fn apply(
self,
mode: ExistenceMode,
extractor_a: EA,
filter_a: FA,
) -> Self::Output;
}