Struct tracing_capture::predicates::ValuePredicate
source · pub struct ValuePredicate<T: ?Sized, P> { /* private fields */ }
Expand description
Predicate for TracedValue
s returned by the value()
function.
Trait Implementations§
source§impl<T, P> Display for ValuePredicate<T, P>where
T: for<'a> FromTracedValue<'a> + ?Sized,
P: Predicate<T>,
impl<T, P> Display for ValuePredicate<T, P>where
T: for<'a> FromTracedValue<'a> + ?Sized,
P: Predicate<T>,
source§impl<T, P> IntoFieldPredicate for ValuePredicate<T, P>where
T: for<'a> FromTracedValue<'a> + ?Sized,
P: Predicate<T>,
impl<T, P> IntoFieldPredicate for ValuePredicate<T, P>where
T: for<'a> FromTracedValue<'a> + ?Sized,
P: Predicate<T>,
§type Predicate = ValuePredicate<T, P>
type Predicate = ValuePredicate<T, P>
Predicate output of the conversion. The exact type should be considered an implementation
detail and should not be relied upon.
source§fn into_predicate(self) -> Self::Predicate
fn into_predicate(self) -> Self::Predicate
Performs the conversion.
source§impl<T: ?Sized, P: PartialEq> PartialEq for ValuePredicate<T, P>
impl<T: ?Sized, P: PartialEq> PartialEq for ValuePredicate<T, P>
source§impl<T, P> Predicate<TracedValue> for ValuePredicate<T, P>where
T: for<'a> FromTracedValue<'a> + ?Sized,
P: Predicate<T>,
impl<T, P> Predicate<TracedValue> for ValuePredicate<T, P>where
T: for<'a> FromTracedValue<'a> + ?Sized,
P: Predicate<T>,
source§impl<T, P> PredicateReflection for ValuePredicate<T, P>where
T: for<'a> FromTracedValue<'a> + ?Sized,
P: Predicate<T>,
impl<T, P> PredicateReflection for ValuePredicate<T, P>where
T: for<'a> FromTracedValue<'a> + ?Sized,
P: Predicate<T>,
impl<T: ?Sized, P: Copy> Copy for ValuePredicate<T, P>
Auto Trait Implementations§
impl<T, P> Freeze for ValuePredicate<T, P>
impl<T, P> RefUnwindSafe for ValuePredicate<T, P>where
P: RefUnwindSafe,
T: ?Sized,
impl<T, P> Send for ValuePredicate<T, P>
impl<T, P> Sync for ValuePredicate<T, P>
impl<T, P> Unpin for ValuePredicate<T, P>
impl<T, P> UnwindSafe for ValuePredicate<T, P>where
P: UnwindSafe,
T: ?Sized,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<P, Item> PredicateBooleanExt<Item> for Pwhere
P: Predicate<Item>,
Item: ?Sized,
impl<P, Item> PredicateBooleanExt<Item> for Pwhere
P: Predicate<Item>,
Item: ?Sized,
§fn and<B>(self, other: B) -> AndPredicate<Self, B, Item>where
B: Predicate<Item>,
Self: Sized,
fn and<B>(self, other: B) -> AndPredicate<Self, B, Item>where
B: Predicate<Item>,
Self: Sized,
Compute the logical AND of two
Predicate
results, returning the result. Read more