Struct sc_utils::metrics::TOKIO_THREADS_ALIVE
source · pub struct TOKIO_THREADS_ALIVE { /* private fields */ }
Methods from Deref<Target = GenericGauge<AtomicU64>>§
pub fn set(&self, v: <P as Atomic>::T)
pub fn set(&self, v: <P as Atomic>::T)
Set the gauge to an arbitrary value.
pub fn inc(&self)
pub fn inc(&self)
Increase the gauge by 1.
pub fn dec(&self)
pub fn dec(&self)
Decrease the gauge by 1.
pub fn add(&self, v: <P as Atomic>::T)
pub fn add(&self, v: <P as Atomic>::T)
Add the given value to the gauge. (The value can be negative, resulting in a decrement of the gauge.)
pub fn sub(&self, v: <P as Atomic>::T)
pub fn sub(&self, v: <P as Atomic>::T)
Subtract the given value from the gauge. (The value can be negative, resulting in an increment of the gauge.)
pub fn get(&self) -> <P as Atomic>::T
pub fn get(&self) -> <P as Atomic>::T
Return the gauge value.
Trait Implementations§
source§impl Deref for TOKIO_THREADS_ALIVE
impl Deref for TOKIO_THREADS_ALIVE
impl LazyStatic for TOKIO_THREADS_ALIVE
Auto Trait Implementations§
impl RefUnwindSafe for TOKIO_THREADS_ALIVE
impl Send for TOKIO_THREADS_ALIVE
impl Sync for TOKIO_THREADS_ALIVE
impl Unpin for TOKIO_THREADS_ALIVE
impl UnwindSafe for TOKIO_THREADS_ALIVE
Blanket Implementations§
§impl<T> SaturatedConversion for T
impl<T> SaturatedConversion for T
§fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
fn saturated_from<T>(t: T) -> Selfwhere Self: UniqueSaturatedFrom<T>,
§fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
fn saturated_into<T>(self) -> Twhere Self: UniqueSaturatedInto<T>,
Consume self to return an equivalent value of
T
. Read more§impl<T, S> UniqueSaturatedInto<T> for Swhere
T: Bounded,
S: TryInto<T>,
impl<T, S> UniqueSaturatedInto<T> for Swhere T: Bounded, S: TryInto<T>,
§fn unique_saturated_into(self) -> T
fn unique_saturated_into(self) -> T
Consume self to return an equivalent value of
T
.