Struct prometheus_client::metrics::gauge::ConstGauge
source · pub struct ConstGauge<N = i64> { /* private fields */ }
Expand description
Implementations§
source§impl<N> ConstGauge<N>
impl<N> ConstGauge<N>
sourcepub fn new(value: N) -> Self
pub fn new(value: N) -> Self
Creates a new ConstGauge
.
Trait Implementations§
source§impl<N: Debug> Debug for ConstGauge<N>
impl<N: Debug> Debug for ConstGauge<N>
source§impl<N: Default> Default for ConstGauge<N>
impl<N: Default> Default for ConstGauge<N>
source§fn default() -> ConstGauge<N>
fn default() -> ConstGauge<N>
Returns the “default value” for a type. Read more
source§impl<N> EncodeMetric for ConstGauge<N>where
N: EncodeGaugeValue,
impl<N> EncodeMetric for ConstGauge<N>where
N: EncodeGaugeValue,
source§fn encode(&self, encoder: MetricEncoder<'_>) -> Result<(), Error>
fn encode(&self, encoder: MetricEncoder<'_>) -> Result<(), Error>
Encode the given instance in the OpenMetrics text encoding.
source§fn metric_type(&self) -> MetricType
fn metric_type(&self) -> MetricType
The OpenMetrics metric type of the instance.
source§impl<N> TypedMetric for ConstGauge<N>
impl<N> TypedMetric for ConstGauge<N>
source§const TYPE: MetricType = MetricType::Gauge
const TYPE: MetricType = MetricType::Gauge
The OpenMetrics metric type.
Auto Trait Implementations§
impl<N> Freeze for ConstGauge<N>where
N: Freeze,
impl<N> RefUnwindSafe for ConstGauge<N>where
N: RefUnwindSafe,
impl<N> Send for ConstGauge<N>where
N: Send,
impl<N> Sync for ConstGauge<N>where
N: Sync,
impl<N> Unpin for ConstGauge<N>where
N: Unpin,
impl<N> UnwindSafe for ConstGauge<N>where
N: UnwindSafe,
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