pub trait WriteStat:
Send
+ Sync
+ Debug {
// Provided methods
fn add_count(&self, _event: MetricEvent, _count: u64) { ... }
fn update_concurrency(&self, _concurrency: u32) { ... }
}Provided Methods§
fn add_count(&self, _event: MetricEvent, _count: u64)
fn update_concurrency(&self, _concurrency: u32)
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".