pub struct FeatureExtractorPerformance {
pub avg_extraction_time_ms: f32,
pub memory_usage_mb: f32,
pub quality_score: f32,
}Expand description
Performance characteristics of feature extractors
Fields§
§avg_extraction_time_ms: f32Average extraction time per document (ms)
memory_usage_mb: f32Memory usage (MB)
quality_score: f32Feature quality score
Trait Implementations§
Source§impl Clone for FeatureExtractorPerformance
impl Clone for FeatureExtractorPerformance
Source§fn clone(&self) -> FeatureExtractorPerformance
fn clone(&self) -> FeatureExtractorPerformance
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 FeatureExtractorPerformance
impl RefUnwindSafe for FeatureExtractorPerformance
impl Send for FeatureExtractorPerformance
impl Sync for FeatureExtractorPerformance
impl Unpin for FeatureExtractorPerformance
impl UnwindSafe for FeatureExtractorPerformance
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