pub trait LinearTransformationFactory<Input, Output> {
type Transform: Transformation<Input, Output>;
// Required method
fn create(&self, cols: &[Output]) -> Self::Transform;
}Expand description
Factory trait for creating linear transformations from column data.
Required Associated Types§
type Transform: Transformation<Input, Output>
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".