Enum hdbscan::NnAlgorithm
source · pub enum NnAlgorithm {
Auto,
BruteForce,
KdTree,
}Expand description
The nearest neighbour algorithm options
Variants§
Auto
HDBSCAN internally selects the nearest neighbour based on size and dimensionality of the input data
BruteForce
Computes a distance matrix between each point and all others
KdTree
K-dimensional tree algorithm.
Trait Implementations§
source§impl Clone for NnAlgorithm
impl Clone for NnAlgorithm
source§fn clone(&self) -> NnAlgorithm
fn clone(&self) -> NnAlgorithm
Returns a copy 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 NnAlgorithm
impl Debug for NnAlgorithm
source§impl PartialEq for NnAlgorithm
impl PartialEq for NnAlgorithm
impl StructuralPartialEq for NnAlgorithm
Auto Trait Implementations§
impl Freeze for NnAlgorithm
impl RefUnwindSafe for NnAlgorithm
impl Send for NnAlgorithm
impl Sync for NnAlgorithm
impl Unpin for NnAlgorithm
impl UnwindSafe for NnAlgorithm
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)