pub trait IntoFieldPredicate {
    type Predicate: Predicate<TracedValue>;

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

Conversion into a predicate for a TracedValue used in the field() 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§