pub trait FeatureNamesDescriptionsTrait {
    fn get_names(&self) -> Vec<&str>;
    fn get_descriptions(&self) -> Vec<&str>;
}

Required Methods

Vector of feature names. The length and feature order corresponds to eval() output

Vector of feature descriptions. The length and feature order corresponds to eval() output

Implementors