pub trait DecoratableTarget<P> {
    type FilterOutput;

    fn filter_target(self, predicate: P) -> Self::FilterOutput;
}
Expand description

Interface to add information to conflict targets. Designed to be open for further additions to conflict targets like constraints

Required Associated Types§

Output type of filter_target operation

Required Methods§

equivalent to filter of FilterDsl but aimed at conflict targets

Implementors§