pub trait IntoTargetPredicate {
type Predicate: Predicate<str>;
// Required method
fn into_predicate(self) -> Self::Predicate;
}
Expand description
Conversion into a predicate for the target used in the target()
function.
Required Associated Types§
Required Methods§
sourcefn into_predicate(self) -> Self::Predicate
fn into_predicate(self) -> Self::Predicate
Performs the conversion.