Trait dync::traits::HashBytes

source ·
pub trait HashBytes: Hash {
    // Required method
    unsafe fn hash_bytes(_self_: &[MaybeUninit<u8>], state: &mut dyn Hasher);
}

Required Methods§

source

unsafe fn hash_bytes(_self_: &[MaybeUninit<u8>], state: &mut dyn Hasher)

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T: Hash + 'static> HashBytes for T