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>
impl<T, P> Display for ValuePredicate<T, P>
source§impl<T, P> IntoFieldPredicate for ValuePredicate<T, P>
impl<T, P> IntoFieldPredicate for ValuePredicate<T, P>
§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, P> Predicate<TracedValue> for ValuePredicate<T, P>
impl<T, P> Predicate<TracedValue> for ValuePredicate<T, P>
source§impl<T, P> PredicateReflection for ValuePredicate<T, P>
impl<T, P> PredicateReflection for ValuePredicate<T, P>
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<P, Item> PredicateBooleanExt<Item> for P
impl<P, Item> PredicateBooleanExt<Item> for P
source§fn and<B>(self, other: B) -> AndPredicate<Self, B, Item>
fn and<B>(self, other: B) -> AndPredicate<Self, B, Item>
Compute the logical AND of two
Predicate
results, returning the result. Read moresource§fn or<B>(self, other: B) -> OrPredicate<Self, B, Item>
fn or<B>(self, other: B) -> OrPredicate<Self, B, Item>
Compute the logical OR of two
Predicate
results, returning the result. Read more