pub trait IntoFieldPredicate {
type Predicate: Predicate<TracedValue>;
// Required method
fn into_predicate(self) -> Self::Predicate;
}
Expand description
Conversion into a predicate for a TracedValue
used in the field()
function.
Required Associated Types§
sourcetype Predicate: Predicate<TracedValue>
type Predicate: Predicate<TracedValue>
Predicate output of the conversion. The exact type should be considered an implementation detail and should not be relied upon.
Required Methods§
sourcefn into_predicate(self) -> Self::Predicate
fn into_predicate(self) -> Self::Predicate
Performs the conversion.