pub enum NDArrayFeatureAdder<F> {
Plain(Arc<dyn FeatureAdder<F> + Send + Sync>),
Analysis(Arc<dyn AnalysisFeatureAdder<F> + Send + Sync>),
}Variants§
Plain(Arc<dyn FeatureAdder<F> + Send + Sync>)
Analysis(Arc<dyn AnalysisFeatureAdder<F> + Send + Sync>)
Implementations§
Source§impl<F> NDArrayFeatureAdder<F>
impl<F> NDArrayFeatureAdder<F>
pub fn plain(adder: Arc<dyn FeatureAdder<F> + Send + Sync>) -> Self
pub fn analysis(adder: Arc<dyn AnalysisFeatureAdder<F> + Send + Sync>) -> Self
pub fn features_added(&self) -> usize
pub fn get_column_headers(&self) -> &[&str]
pub fn analysis_dependencies(&self) -> Vec<AnalysisDependency>
pub fn is_analysis_backed(&self) -> bool
Trait Implementations§
Source§impl<F: Clone> Clone for NDArrayFeatureAdder<F>
impl<F: Clone> Clone for NDArrayFeatureAdder<F>
Source§fn clone(&self) -> NDArrayFeatureAdder<F>
fn clone(&self) -> NDArrayFeatureAdder<F>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<F> From<Arc<dyn AnalysisFeatureAdder<F> + Send + Sync>> for NDArrayFeatureAdder<F>
impl<F> From<Arc<dyn AnalysisFeatureAdder<F> + Send + Sync>> for NDArrayFeatureAdder<F>
Source§impl<F> From<Arc<dyn FeatureAdder<F> + Send + Sync>> for NDArrayFeatureAdder<F>
impl<F> From<Arc<dyn FeatureAdder<F> + Send + Sync>> for NDArrayFeatureAdder<F>
Auto Trait Implementations§
impl<F> !RefUnwindSafe for NDArrayFeatureAdder<F>
impl<F> !UnwindSafe for NDArrayFeatureAdder<F>
impl<F> Freeze for NDArrayFeatureAdder<F>
impl<F> Send for NDArrayFeatureAdder<F>
impl<F> Sync for NDArrayFeatureAdder<F>
impl<F> Unpin for NDArrayFeatureAdder<F>
impl<F> UnsafeUnpin for NDArrayFeatureAdder<F>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more