pub enum CellularDistanceFn {
Euclidean,
Manhattan,
Natural,
}
Variants§
Trait Implementations§
Source§impl Clone for CellularDistanceFn
impl Clone for CellularDistanceFn
Source§fn clone(&self) -> CellularDistanceFn
fn clone(&self) -> CellularDistanceFn
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 CellularDistanceFn
impl Debug for CellularDistanceFn
Source§impl PartialEq for CellularDistanceFn
impl PartialEq for CellularDistanceFn
impl Copy for CellularDistanceFn
impl Eq for CellularDistanceFn
impl StructuralPartialEq for CellularDistanceFn
Auto Trait Implementations§
impl Freeze for CellularDistanceFn
impl RefUnwindSafe for CellularDistanceFn
impl Send for CellularDistanceFn
impl Sync for CellularDistanceFn
impl Unpin for CellularDistanceFn
impl UnwindSafe for CellularDistanceFn
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