[][src]Struct hnsw::Hamming

pub struct Hamming<T>(pub T);

Treats each bit contained in this struct as its own dimension and distance is computed as hamming distance.

Trait Implementations

impl<'_> Distance for Hamming<&'_ [u8]>[src]

impl Distance for Hamming<u8>[src]

impl Distance for Hamming<u16>[src]

impl Distance for Hamming<u32>[src]

impl Distance for Hamming<u64>[src]

impl Distance for Hamming<u128>[src]

impl Distance for Hamming<u128x2>[src]

impl Distance for Hamming<u128x4>[src]

impl Distance for Hamming<[u128x4; 2]>[src]

impl Distance for Hamming<[u128x4; 4]>[src]

impl Distance for Hamming<[u128x4; 8]>[src]

impl<T: Clone> Clone for Hamming<T>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<T: Ord> Ord for Hamming<T>[src]

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl<T: PartialOrd> PartialOrd<Hamming<T>> for Hamming<T>[src]

impl<T: PartialEq> PartialEq<Hamming<T>> for Hamming<T>[src]

impl<T: Copy> Copy for Hamming<T>[src]

impl<T: Eq> Eq for Hamming<T>[src]

impl<T: Debug> Debug for Hamming<T>[src]

Auto Trait Implementations

impl<T> Sync for Hamming<T> where
    T: Sync

impl<T> Send for Hamming<T> where
    T: Send

impl<T> Unpin for Hamming<T> where
    T: Unpin

impl<T> RefUnwindSafe for Hamming<T> where
    T: RefUnwindSafe

impl<T> UnwindSafe for Hamming<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> FromCast<T> for T[src]

impl<T, U> Cast<U> for T where
    U: FromCast<T>, 
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> Same<T> for T[src]

type Output = T

Should always be Self