pub trait TypeIdentifier: PartialEq + Display + Debug + Clone { }

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> TypeIdentifier for T
where T: PartialEq + Display + Debug + Clone,