pub trait TransformerPropsTrait {
// Required methods
fn is_size_valid(&self, size: usize) -> bool;
fn size_hint(&self, size: usize) -> usize;
fn names(&self, names: &[&str]) -> Vec<String>;
fn descriptions(&self, desc: &[&str]) -> Vec<String>;
}
Required Methods§
Sourcefn is_size_valid(&self, size: usize) -> bool
fn is_size_valid(&self, size: usize) -> bool
Is the size of the input vector valid?
Sourcefn size_hint(&self, size: usize) -> usize
fn size_hint(&self, size: usize) -> usize
What is the size of the output vector for a given input vector size?
Sourcefn descriptions(&self, desc: &[&str]) -> Vec<String>
fn descriptions(&self, desc: &[&str]) -> Vec<String>
Transform the descriptions of the input features.