pub trait IntoLevelPredicate {
type Predicate: Predicate<Level>;
// Required method
fn into_predicate(self) -> Self::Predicate;
}
Required Associated Types§
Required Methods§
sourcefn into_predicate(self) -> Self::Predicate
fn into_predicate(self) -> Self::Predicate
Performs the conversion.