[][src]Struct float_hash_of::FloatHashOf

pub struct FloatHashOf<T> { /* fields omitted */ }

Takes a 64 bit hash, and makes a primitive 63 bit hash using a double. This allows for easy comparison without keeping making heap allocations in JavaScript (eg: string) or requiring low entropy (int)

Methods

impl<T> FloatHashOf<T>[src]

pub fn into_inner(self) -> f64[src]

Trait Implementations

impl<T> From<HashOf<T, DefaultHasher>> for FloatHashOf<T>[src]

impl<'_, T: Hash + ?Sized, Q: Borrow<T>> From<&'_ T> for FloatHashOf<Q>[src]

impl<T> Clone for FloatHashOf<T>[src]

impl<T> Copy for FloatHashOf<T>[src]

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

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

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

impl<T: Hash> Hash for FloatHashOf<T>[src]

Auto Trait Implementations

impl<T> !Send for FloatHashOf<T>

impl<T> !Sync for FloatHashOf<T>

impl<T> Unpin for FloatHashOf<T>

impl<T> UnwindSafe for FloatHashOf<T> where
    T: RefUnwindSafe

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

Blanket Implementations

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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