Expand description
The different types of Any
for use in a map.
This is based on std::any
, but goes a little further, with CloneAny
being a cloneable Any
. CloneAnySend
, CloneAnySync
, and
CloneAnySendSync
further retrict what can be placed in the map with the
Send
and Sync
bounds.
Traitsยง
- Any
- See also
CloneAny
for a cloneable version of this trait. - Clone
Any - See also
Any
for a version without theClone
requirement. - Clone
AnySend - See also
Any
for a version without theClone + Send
requirements. - Clone
AnySend Sync - See also
Any
for a version without theClone + Send + Sync
requirements. - Clone
AnySync - See also
Any
for a version without theClone + Sync
requirements. - Unchecked
AnyExt