pub trait IndexRuntime {
// Required methods
fn describe(&self) -> Vec<IndexMetric>;
fn apply_metric(&mut self, metric: IndexMetric);
}Required Methods§
fn describe(&self) -> Vec<IndexMetric>
fn apply_metric(&mut self, metric: IndexMetric)
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".