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

A type that can be used in runtime structures.

Object Safety§

This trait is not object safe.

Implementors§

§

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