pub struct FeatureExtractorConfig {
pub name: String,
pub supported_features: Vec<FeatureType>,
pub performance: FeatureExtractorPerformance,
}Expand description
Configuration for feature extractors
Fields§
§name: StringExtractor name
supported_features: Vec<FeatureType>Supported features
performance: FeatureExtractorPerformancePerformance characteristics
Trait Implementations§
Source§impl Clone for FeatureExtractorConfig
impl Clone for FeatureExtractorConfig
Source§fn clone(&self) -> FeatureExtractorConfig
fn clone(&self) -> FeatureExtractorConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for FeatureExtractorConfig
impl RefUnwindSafe for FeatureExtractorConfig
impl Send for FeatureExtractorConfig
impl Sync for FeatureExtractorConfig
impl Unpin for FeatureExtractorConfig
impl UnwindSafe for FeatureExtractorConfig
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