pub struct Prefix<R> { /* private fields */ }
Expand description
Applies a prefix to every metric key.
Keys will be prefixed in the format of <prefix>.<remaining>
.
Trait Implementations§
source§impl<R: Recorder> Recorder for Prefix<R>
impl<R: Recorder> Recorder for Prefix<R>
source§fn describe_counter(
&self,
key_name: KeyName,
unit: Option<Unit>,
description: SharedString,
)
fn describe_counter( &self, key_name: KeyName, unit: Option<Unit>, description: SharedString, )
Describes a counter. Read more
source§fn describe_gauge(
&self,
key_name: KeyName,
unit: Option<Unit>,
description: SharedString,
)
fn describe_gauge( &self, key_name: KeyName, unit: Option<Unit>, description: SharedString, )
Describes a gauge. Read more
source§fn describe_histogram(
&self,
key_name: KeyName,
unit: Option<Unit>,
description: SharedString,
)
fn describe_histogram( &self, key_name: KeyName, unit: Option<Unit>, description: SharedString, )
Describes a histogram. Read more
Auto Trait Implementations§
impl<R> Freeze for Prefix<R>where
R: Freeze,
impl<R> RefUnwindSafe for Prefix<R>where
R: RefUnwindSafe,
impl<R> Send for Prefix<R>where
R: Send,
impl<R> Sync for Prefix<R>where
R: Sync,
impl<R> Unpin for Prefix<R>where
R: Unpin,
impl<R> UnwindSafe for Prefix<R>where
R: 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