pub trait SimpleType:
Send
+ Sync
+ 'static { }Expand description
A type that can contain no Ref<T>s and has an empty MapAs
implementation.
Implementing this trait for a type automatically implements NoMapping
and ContainsNoRefs, which makes the type Collectable.