Enum metrics::GaugeValue
source · pub enum GaugeValue {
Absolute(f64),
Increment(f64),
Decrement(f64),
}
Expand description
Value of a gauge operation.
Variants§
Absolute(f64)
Sets the value of the gauge to this value.
Increment(f64)
Increments the value of the gauge by this much.
Decrement(f64)
Decrements the value of the gauge by this much.
Implementations§
source§impl GaugeValue
impl GaugeValue
sourcepub fn update_value(&self, input: f64) -> f64
pub fn update_value(&self, input: f64) -> f64
Updates an input value based on this gauge value.
Trait Implementations§
source§impl Clone for GaugeValue
impl Clone for GaugeValue
source§fn clone(&self) -> GaugeValue
fn clone(&self) -> GaugeValue
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl RefUnwindSafe for GaugeValue
impl Send for GaugeValue
impl Sync for GaugeValue
impl Unpin for GaugeValue
impl UnwindSafe for GaugeValue
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