pub struct KDNode<'a, const K: usize, P, T>where
P: Debug + PartialOrd + Mul<Output = P> + Add + Sub + Clone + Copy + Default + Distance<P, Output = P> + Square + Sized + 'a,
&'a [P; K]: EuclideanDistance<&'a [P; K], Output = P> + 'a,{ /* private fields */ }
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a, const K: usize, P, T> Freeze for KDNode<'a, K, P, T>
impl<'a, const K: usize, P, T> !RefUnwindSafe for KDNode<'a, K, P, T>
impl<'a, const K: usize, P, T> !Send for KDNode<'a, K, P, T>
impl<'a, const K: usize, P, T> !Sync for KDNode<'a, K, P, T>
impl<'a, const K: usize, P, T> Unpin for KDNode<'a, K, P, T>
impl<'a, const K: usize, P, T> !UnwindSafe for KDNode<'a, K, P, T>
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