pub trait IntoTargetPredicate {
    type Predicate: Predicate<str>;

    fn into_predicate(self) -> Self::Predicate;
}
Expand description

Conversion into a predicate for the target used in the target() function.

Required Associated Types§

Predicate output of the conversion. The exact type should be considered an implementation detail and should not be relied upon.

Required Methods§

Performs the conversion.

Implementations on Foreign Types§

Implementors§