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

Required Methods§

Source

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

Implementations on Foreign Types§

Source§

impl HashValue for bool

Source§

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

Source§

impl HashValue for f32

Source§

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

Source§

impl HashValue for f64

Source§

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

Source§

impl HashValue for i8

Source§

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

Source§

impl HashValue for i16

Source§

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

Source§

impl HashValue for i32

Source§

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

Source§

impl HashValue for i64

Source§

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

Source§

impl HashValue for i128

Source§

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

Source§

impl HashValue for str

Source§

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

Source§

impl HashValue for u8

Source§

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

Source§

impl HashValue for u16

Source§

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

Source§

impl HashValue for u32

Source§

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

Source§

impl HashValue for u64

Source§

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

Source§

impl HashValue for i256

Source§

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

Source§

impl HashValue for IntervalDayTime

Source§

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

Source§

impl HashValue for IntervalMonthDayNano

Source§

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

Source§

impl HashValue for f16

Source§

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

Source§

impl HashValue for [u8]

Source§

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

Source§

impl<'a, T> HashValue for &'a T
where T: HashValue + ?Sized,

Source§

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

Implementors§