pub trait AgentTextMetricRegistration<RLC: RLComponentsTypes>: Sized {
// Required method
fn register(self, builder: RLTraining<RLC>) -> RLTraining<RLC>;
}Available on crate feature
rl only.Expand description
Trait to fake variadic generics for train step text metrics.
Required Methods§
Sourcefn register(self, builder: RLTraining<RLC>) -> RLTraining<RLC>
fn register(self, builder: RLTraining<RLC>) -> RLTraining<RLC>
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.