FastHash

Trait FastHash 

Source
pub trait FastHash: Copy + Eq {
    // Required method
    fn fast_hash(&self) -> usize;
}

Required Methods§

Source

fn fast_hash(&self) -> usize

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl FastHash for i8

Source§

impl FastHash for i16

Source§

impl FastHash for i32

Source§

impl FastHash for i64

Source§

impl FastHash for i128

Source§

impl FastHash for isize

Source§

impl FastHash for u8

Source§

impl FastHash for u16

Source§

impl FastHash for u32

Source§

impl FastHash for u64

Source§

impl FastHash for u128

Source§

impl FastHash for usize

Implementors§