Struct metrics_util::layers::Stack
source · [−]pub struct Stack<R> { /* private fields */ }
Expand description
Builder for composing layers together in a top-down/inside-out order.
Implementations
sourceimpl<R: Recorder + 'static> Stack<R>
impl<R: Recorder + 'static> Stack<R>
sourcepub fn install(self) -> Result<(), SetRecorderError>
pub fn install(self) -> Result<(), SetRecorderError>
Installs this stack as the global recorder.
An error will be returned if there’s an issue with installing the stack as the global recorder.
Trait Implementations
sourceimpl<R: Recorder> Recorder for Stack<R>
impl<R: Recorder> Recorder for Stack<R>
sourcefn describe_counter(
&self,
key_name: KeyName,
unit: Option<Unit>,
description: &'static str
)
fn describe_counter(
&self,
key_name: KeyName,
unit: Option<Unit>,
description: &'static str
)
Describes a counter. Read more
sourcefn describe_gauge(
&self,
key_name: KeyName,
unit: Option<Unit>,
description: &'static str
)
fn describe_gauge(
&self,
key_name: KeyName,
unit: Option<Unit>,
description: &'static str
)
Describes a gauge. Read more
sourcefn describe_histogram(
&self,
key_name: KeyName,
unit: Option<Unit>,
description: &'static str
)
fn describe_histogram(
&self,
key_name: KeyName,
unit: Option<Unit>,
description: &'static str
)
Describes a histogram. Read more
sourcefn register_counter(&self, key: &Key) -> Counter
fn register_counter(&self, key: &Key) -> Counter
Registers a counter.
sourcefn register_gauge(&self, key: &Key) -> Gauge
fn register_gauge(&self, key: &Key) -> Gauge
Registers a gauge.
sourcefn register_histogram(&self, key: &Key) -> Histogram
fn register_histogram(&self, key: &Key) -> Histogram
Registers a histogram.
Auto Trait Implementations
impl<R> RefUnwindSafe for Stack<R> where
R: RefUnwindSafe,
impl<R> Send for Stack<R> where
R: Send,
impl<R> Sync for Stack<R> where
R: Sync,
impl<R> Unpin for Stack<R> where
R: Unpin,
impl<R> UnwindSafe for Stack<R> where
R: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more