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