pub trait Hash: AsRef<[u8]> + StdHash + Eq + Clone + Codec + Debug + Send + Sync { }
Expand description

A convenience trait for gathering all the desired hash characteristics.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T: AsRef<[u8]> + StdHash + Eq + Clone + Codec + Debug + Send + Sync> Hash for T