Struct tracing_capture::predicates::ParentPredicate
source · pub struct ParentPredicate<P> { /* private fields */ }
Expand description
Predicate for the parent of a CapturedSpan
or CapturedEvent
returned
by the parent()
function.
Trait Implementations§
source§impl<Rhs, P> BitAnd<Rhs> for ParentPredicate<P>where
Self: PredicateReflection,
Rhs: PredicateReflection,
impl<Rhs, P> BitAnd<Rhs> for ParentPredicate<P>where
Self: PredicateReflection,
Rhs: PredicateReflection,
source§impl<Rhs, P> BitOr<Rhs> for ParentPredicate<P>where
Self: PredicateReflection,
Rhs: PredicateReflection,
impl<Rhs, P> BitOr<Rhs> for ParentPredicate<P>where
Self: PredicateReflection,
Rhs: PredicateReflection,
source§impl<P: Clone> Clone for ParentPredicate<P>
impl<P: Clone> Clone for ParentPredicate<P>
source§fn clone(&self) -> ParentPredicate<P>
fn clone(&self) -> ParentPredicate<P>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<P: Debug> Debug for ParentPredicate<P>
impl<P: Debug> Debug for ParentPredicate<P>
source§impl<P> Display for ParentPredicate<P>where
P: for<'a> Predicate<CapturedSpan<'a>>,
impl<P> Display for ParentPredicate<P>where
P: for<'a> Predicate<CapturedSpan<'a>>,
source§impl<P: PartialEq> PartialEq for ParentPredicate<P>
impl<P: PartialEq> PartialEq for ParentPredicate<P>
source§fn eq(&self, other: &ParentPredicate<P>) -> bool
fn eq(&self, other: &ParentPredicate<P>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<'a, P, T> Predicate<T> for ParentPredicate<P>where
T: Captured<'a>,
P: for<'p> Predicate<CapturedSpan<'p>>,
impl<'a, P, T> Predicate<T> for ParentPredicate<P>where
T: Captured<'a>,
P: for<'p> Predicate<CapturedSpan<'p>>,
source§impl<P> PredicateReflection for ParentPredicate<P>where
P: for<'a> Predicate<CapturedSpan<'a>>,
impl<P> PredicateReflection for ParentPredicate<P>where
P: for<'a> Predicate<CapturedSpan<'a>>,
impl<P: Copy> Copy for ParentPredicate<P>
impl<P: Eq> Eq for ParentPredicate<P>
impl<P> StructuralPartialEq for ParentPredicate<P>
Auto Trait Implementations§
impl<P> Freeze for ParentPredicate<P>where
P: Freeze,
impl<P> RefUnwindSafe for ParentPredicate<P>where
P: RefUnwindSafe,
impl<P> Send for ParentPredicate<P>where
P: Send,
impl<P> Sync for ParentPredicate<P>where
P: Sync,
impl<P> Unpin for ParentPredicate<P>where
P: Unpin,
impl<P> UnwindSafe for ParentPredicate<P>where
P: UnwindSafe,
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