pub enum RStarInsertionStrategy {}
Expand description
Inserts points according to the r-star heuristic.
The r*-heuristic focusses on good insertion quality at the costs of insertion performance. This strategy is best for use cases with few insertions and many nearest neighbor queries.
RStarInsertionStrategy
is used as the default insertion strategy.
See InsertionStrategy for more information on insertion strategies.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RStarInsertionStrategy
impl RefUnwindSafe for RStarInsertionStrategy
impl Send for RStarInsertionStrategy
impl Sync for RStarInsertionStrategy
impl Unpin for RStarInsertionStrategy
impl UnwindSafe for RStarInsertionStrategy
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