pub trait Member: Send + Sync + Sized + Debug + Eq + PartialEq<Self> + Clone + 'static { }
Expand description

A type that can be used in runtime structures.

Implementors§

source§

impl<T> Member for Twhere T: Send + Sync + Debug + Eq + PartialEq<T> + Clone + 'static,