pub enum Matcher {
Full(String),
Prefix(String),
Suffix(String),
}
Expand description
Matches a metric name in a specific way.
Used for specifying overrides for buckets, allowing a default set of histogram buckets to be specified while adjusting the buckets that get used for specific metrics.
Variants§
Full(String)
Matches the entire metric name.
Prefix(String)
Matches the beginning of the metric name.
Suffix(String)
Matches the end of the metric name.
Implementations§
Trait Implementations§
source§impl Ord for Matcher
impl Ord for Matcher
source§impl PartialEq for Matcher
impl PartialEq for Matcher
source§impl PartialOrd for Matcher
impl PartialOrd for Matcher
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Eq for Matcher
impl StructuralEq for Matcher
impl StructuralPartialEq for Matcher
Auto Trait Implementations§
impl RefUnwindSafe for Matcher
impl Send for Matcher
impl Sync for Matcher
impl Unpin for Matcher
impl UnwindSafe for Matcher
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> CallHasher for Twhere
T: Hash + ?Sized,
impl<T> CallHasher for Twhere T: Hash + ?Sized,
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
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<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.