pub enum ClusteringType {
Fastest,
Fast,
Best,
}Expand description
Clustering aggressiveness level.
Variants§
Fastest
Only 4 clusters maximum (fastest encoding).
Fast
Default clustering.
Best
With pair merge refinement (best compression).
Trait Implementations§
Source§impl Clone for ClusteringType
impl Clone for ClusteringType
Source§fn clone(&self) -> ClusteringType
fn clone(&self) -> ClusteringType
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 moreSource§impl Debug for ClusteringType
impl Debug for ClusteringType
Source§impl Default for ClusteringType
impl Default for ClusteringType
Source§fn default() -> ClusteringType
fn default() -> ClusteringType
Returns the “default value” for a type. Read more
Source§impl PartialEq for ClusteringType
impl PartialEq for ClusteringType
impl Copy for ClusteringType
impl Eq for ClusteringType
impl StructuralPartialEq for ClusteringType
Auto Trait Implementations§
impl Freeze for ClusteringType
impl RefUnwindSafe for ClusteringType
impl Send for ClusteringType
impl Sync for ClusteringType
impl Unpin for ClusteringType
impl UnwindSafe for ClusteringType
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