pub trait MetricsUpdate:
Send
+ Sync
+ 'static {
type Error: Debug;
const NAME: &'static str;
// Required method
fn update(&mut self) -> Result<(), Self::Error>;
}
Expand description
Behavior to update metrics.
Required Associated Constants§
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.