pub struct MultiFeatureAggregation {
pub features: Vec<f64>,
pub names: Vec<String>,
}Expand description
Multi-feature aggregation result.
Fields§
§features: Vec<f64>Aggregated features per dimension.
names: Vec<String>Feature names.
Implementations§
Trait Implementations§
Source§impl Clone for MultiFeatureAggregation
impl Clone for MultiFeatureAggregation
Source§fn clone(&self) -> MultiFeatureAggregation
fn clone(&self) -> MultiFeatureAggregation
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 MultiFeatureAggregation
impl RefUnwindSafe for MultiFeatureAggregation
impl Send for MultiFeatureAggregation
impl Sync for MultiFeatureAggregation
impl Unpin for MultiFeatureAggregation
impl UnwindSafe for MultiFeatureAggregation
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