pub trait ExistenceTarget<S, A, EA, FA, Sc: Score>where
EA: CollectionExtract<S, Item = A>,
FA: UniFilter<S, A>,{
type Output;
// Required method
fn apply(
self,
mode: ExistenceMode,
extractor_a: EA,
filter_a: FA,
) -> Self::Output;
}Required Associated Types§
Required Methods§
fn apply( self, mode: ExistenceMode, extractor_a: EA, filter_a: FA, ) -> Self::Output
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".