Skip to main content

DirtyHash

Trait DirtyHash 

Source
pub trait DirtyHash {
    // Required method
    fn dirty_hash(&self) -> u64;
}

Required Methods§

Source

fn dirty_hash(&self) -> u64

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl DirtyHash for f32

Source§

fn dirty_hash(&self) -> u64

Source§

impl DirtyHash for f64

Source§

fn dirty_hash(&self) -> u64

Source§

impl DirtyHash for i8

Source§

fn dirty_hash(&self) -> u64

Source§

impl DirtyHash for i16

Source§

fn dirty_hash(&self) -> u64

Source§

impl DirtyHash for i32

Source§

fn dirty_hash(&self) -> u64

Source§

impl DirtyHash for i64

Source§

fn dirty_hash(&self) -> u64

Source§

impl DirtyHash for i128

Source§

fn dirty_hash(&self) -> u64

Source§

impl DirtyHash for u8

Source§

fn dirty_hash(&self) -> u64

Source§

impl DirtyHash for u16

Source§

fn dirty_hash(&self) -> u64

Source§

impl DirtyHash for u32

Source§

fn dirty_hash(&self) -> u64

Source§

impl DirtyHash for u64

Source§

fn dirty_hash(&self) -> u64

Source§

impl DirtyHash for u128

Source§

fn dirty_hash(&self) -> u64

Source§

impl<T: DirtyHash + ?Sized> DirtyHash for &T

Source§

fn dirty_hash(&self) -> u64

Source§

impl<T: DirtyHash> DirtyHash for Option<T>

Source§

fn dirty_hash(&self) -> u64

Implementors§