pub trait ExHashT: Hash + Eq + Debug + Clone + Send + Sync + 'static { }
Expand description

Minimum Requirements for a Hash within Networking

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> ExHashT for T
where T: Hash + Eq + Debug + Clone + Send + Sync + 'static,