[][src]Struct metrical::Gauge

pub struct Gauge { /* fields omitted */ }

A metric used to measure both increasing and decreasing resources.

Examples:

  • A measure of the number of CPUs dedicated to a task
  • The number of machines running a particular script
  • The amount of memory in use by a function

Implementations

impl Gauge[src]

pub fn increment(&mut self, value: u32)[src]

Increment the value of a gauge

pub fn decrement(&mut self, value: u32)[src]

Decrement the value of a gauge

pub fn set(&mut self, value: u32)[src]

Set the value of a gauge to a specific value

Trait Implementations

impl Drop for Gauge[src]

Auto Trait Implementations

impl RefUnwindSafe for Gauge

impl Send for Gauge

impl Sync for Gauge

impl Unpin for Gauge

impl UnwindSafe for Gauge

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.