Struct tracing_capture::predicates::NamePredicate
source · pub struct NamePredicate<P> { /* private fields */ }
Expand description
Predicate for the name of a CapturedSpan
returned by the name()
function.
Trait Implementations§
source§impl<Rhs, P> BitAnd<Rhs> for NamePredicate<P>where
Self: PredicateReflection,
Rhs: PredicateReflection,
impl<Rhs, P> BitAnd<Rhs> for NamePredicate<P>where
Self: PredicateReflection,
Rhs: PredicateReflection,
source§impl<Rhs, P> BitOr<Rhs> for NamePredicate<P>where
Self: PredicateReflection,
Rhs: PredicateReflection,
impl<Rhs, P> BitOr<Rhs> for NamePredicate<P>where
Self: PredicateReflection,
Rhs: PredicateReflection,
source§impl<P: Clone> Clone for NamePredicate<P>
impl<P: Clone> Clone for NamePredicate<P>
source§fn clone(&self) -> NamePredicate<P>
fn clone(&self) -> NamePredicate<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 NamePredicate<P>
impl<P: Debug> Debug for NamePredicate<P>
source§impl<P: PartialEq> PartialEq for NamePredicate<P>
impl<P: PartialEq> PartialEq for NamePredicate<P>
source§impl<P: Predicate<str>> Predicate<CapturedSpan<'_>> for NamePredicate<P>
impl<P: Predicate<str>> Predicate<CapturedSpan<'_>> for NamePredicate<P>
source§fn eval(&self, variable: &CapturedSpan<'_>) -> bool
fn eval(&self, variable: &CapturedSpan<'_>) -> bool
Execute this
Predicate
against variable
, returning the resulting
boolean.source§impl<P: Predicate<str>> PredicateReflection for NamePredicate<P>
impl<P: Predicate<str>> PredicateReflection for NamePredicate<P>
impl<P: Copy> Copy for NamePredicate<P>
impl<P: Eq> Eq for NamePredicate<P>
impl<P> StructuralPartialEq for NamePredicate<P>
Auto Trait Implementations§
impl<P> Freeze for NamePredicate<P>where
P: Freeze,
impl<P> RefUnwindSafe for NamePredicate<P>where
P: RefUnwindSafe,
impl<P> Send for NamePredicate<P>where
P: Send,
impl<P> Sync for NamePredicate<P>where
P: Sync,
impl<P> Unpin for NamePredicate<P>where
P: Unpin,
impl<P> UnwindSafe for NamePredicate<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
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.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