pub trait MetricVecBuilder: Send + Sync + Clone {
type M: Metric;
type P: Describer + Sync + Send + Clone;
// Required method
fn build(&self, _: &Self::P, _: &[&str]) -> Result<Self::M, Error>;
}
Expand description
An interface for building a metric vector.