pub trait Value: Clone + Eq + Debug + Hash + 'static { }

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T: Clone + Eq + Debug + Hash + 'static> Value for T