HashValue

pub(crate) trait HashValue {
    // Required method
    fn hash(&self, state: &RandomState) -> u64;
}
Expand description

A trait to allow hashing of floating point numbers

Required Methods§

Source

fn hash(&self, state: &RandomState) -> u64

Implementations on Foreign Types§

Source§

impl HashValue for Option<f32>

Source§

fn hash(&self, state: &RandomState) -> u64

Source§

impl HashValue for Option<f64>

Source§

fn hash(&self, state: &RandomState) -> u64

Source§

impl HashValue for Option<i8>

Source§

fn hash(&self, state: &RandomState) -> u64

Source§

impl HashValue for Option<i16>

Source§

fn hash(&self, state: &RandomState) -> u64

Source§

impl HashValue for Option<i32>

Source§

fn hash(&self, state: &RandomState) -> u64

Source§

impl HashValue for Option<i64>

Source§

fn hash(&self, state: &RandomState) -> u64

Source§

impl HashValue for Option<i128>

Source§

fn hash(&self, state: &RandomState) -> u64

Source§

impl HashValue for Option<u8>

Source§

fn hash(&self, state: &RandomState) -> u64

Source§

impl HashValue for Option<u16>

Source§

fn hash(&self, state: &RandomState) -> u64

Source§

impl HashValue for Option<u32>

Source§

fn hash(&self, state: &RandomState) -> u64

Source§

impl HashValue for Option<u64>

Source§

fn hash(&self, state: &RandomState) -> u64

Source§

impl HashValue for Option<String>

Source§

fn hash(&self, state: &RandomState) -> u64

Source§

impl HashValue for Option<f16>

Source§

fn hash(&self, state: &RandomState) -> u64

Source§

impl HashValue for Option<IntervalDayTime>

Source§

fn hash(&self, state: &RandomState) -> u64

Source§

impl HashValue for Option<IntervalMonthDayNano>

Source§

fn hash(&self, state: &RandomState) -> u64

Source§

impl HashValue for Option<i256>

Source§

fn hash(&self, state: &RandomState) -> u64

Source§

impl HashValue for f32

Source§

fn hash(&self, state: &RandomState) -> u64

Source§

impl HashValue for f64

Source§

fn hash(&self, state: &RandomState) -> u64

Source§

impl HashValue for i8

Source§

fn hash(&self, state: &RandomState) -> u64

Source§

impl HashValue for i16

Source§

fn hash(&self, state: &RandomState) -> u64

Source§

impl HashValue for i32

Source§

fn hash(&self, state: &RandomState) -> u64

Source§

impl HashValue for i64

Source§

fn hash(&self, state: &RandomState) -> u64

Source§

impl HashValue for i128

Source§

fn hash(&self, state: &RandomState) -> u64

Source§

impl HashValue for u8

Source§

fn hash(&self, state: &RandomState) -> u64

Source§

impl HashValue for u16

Source§

fn hash(&self, state: &RandomState) -> u64

Source§

impl HashValue for u32

Source§

fn hash(&self, state: &RandomState) -> u64

Source§

impl HashValue for u64

Source§

fn hash(&self, state: &RandomState) -> u64

Source§

impl HashValue for f16

Source§

fn hash(&self, state: &RandomState) -> u64

Source§

impl HashValue for IntervalDayTime

Source§

fn hash(&self, state: &RandomState) -> u64

Source§

impl HashValue for IntervalMonthDayNano

Source§

fn hash(&self, state: &RandomState) -> u64

Source§

impl HashValue for i256

Source§

fn hash(&self, state: &RandomState) -> u64

Implementors§