pub trait Invertible<T>: Transformer<T> {
// Required method
fn inv_transform(&self, inputs: T) -> Result<T, Error>;
}Expand description
Trait for invertible data transformers
Required Methods§
Sourcefn inv_transform(&self, inputs: T) -> Result<T, Error>
fn inv_transform(&self, inputs: T) -> Result<T, Error>
Maps the inputs using the inverse of the fitted transform.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".