pub trait UpDownCounter: Send + Sync + Debug {
// Required method
fn add(
&self,
value: i64,
attributes: Option<&Attributes>,
context: Option<&dyn Context>,
);
}
Available on non-PowerPC only.
Expand description
A counter that can increase or decrease.