Trait TransformerPropsTrait

Source
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§

Source

fn is_size_valid(&self, size: usize) -> bool

Is the size of the input vector valid?

Source

fn size_hint(&self, size: usize) -> usize

What is the size of the output vector for a given input vector size?

Source

fn names(&self, names: &[&str]) -> Vec<String>

Transform the names of the input features.

Source

fn descriptions(&self, desc: &[&str]) -> Vec<String>

Transform the descriptions of the input features.

Implementors§