pub trait MetricVecBuilder:
Send
+ Sync
+ Clone {
type M: Metric;
type P: Describer + Sync + Send + Clone;
// Required method
fn build<V: AsRef<str>>(&self, _: &Self::P, _: &[V]) -> Result<Self::M>;
}Expand description
An interface for building a metric vector.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".