Struct metrics_util::layers::Fanout  
source · [−]pub struct Fanout { /* private fields */ }Expand description
Fans out metrics to multiple recorders.
Trait Implementations
sourceimpl Recorder for Fanout
 
impl Recorder for Fanout
sourcefn 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
sourcefn 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
sourcefn 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
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 !RefUnwindSafe for Fanout
impl !Send for Fanout
impl !Sync for Fanout
impl Unpin for Fanout
impl !UnwindSafe for Fanout
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
    T: ?Sized, 
 
impl<T> BorrowMut<T> for T where
    T: ?Sized, 
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more