pub trait TextMetricRegistration<LC: LearningComponentsTypes>: Sized {
// Required method
fn register(self, builder: SupervisedTraining<LC>) -> SupervisedTraining<LC>;
}Expand description
Trait to fake variadic generics.
Required Methods§
Sourcefn register(self, builder: SupervisedTraining<LC>) -> SupervisedTraining<LC>
fn register(self, builder: SupervisedTraining<LC>) -> SupervisedTraining<LC>
Register the metrics.
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.