pub struct ClusterResult {
pub histograms: Vec<Histogram>,
pub symbols: Vec<u32>,
}Expand description
Result of clustering histograms.
Fields§
§histograms: Vec<Histogram>The clustered histograms.
symbols: Vec<u32>Mapping from input index to cluster index.
Trait Implementations§
Source§impl Clone for ClusterResult
impl Clone for ClusterResult
Source§fn clone(&self) -> ClusterResult
fn clone(&self) -> ClusterResult
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 ClusterResult
impl !RefUnwindSafe for ClusterResult
impl Send for ClusterResult
impl !Sync for ClusterResult
impl Unpin for ClusterResult
impl UnwindSafe for ClusterResult
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