[][src]Trait decorum::hash::FloatHash

pub trait FloatHash {
    fn hash<H>(&self, state: &mut H)
    where
        H: Hasher
; fn float_hash<H>(&self, state: &mut H)
    where
        H: Hasher
, { ... } }

Hashing for primitive floating-point values.

Required methods

fn hash<H>(&self, state: &mut H) where
    H: Hasher

👎 Deprecated since 0.3.1:

use FloatHash::float_hash instead

Loading content...

Provided methods

fn float_hash<H>(&self, state: &mut H) where
    H: Hasher

Loading content...

Implementations on Foreign Types

impl<T> FloatHash for [T] where
    T: Float + Primitive
[src]

Loading content...

Implementors

impl<T> FloatHash for T where
    T: Float + Primitive
[src]

Loading content...