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§
- See also
CloneAny
for a cloneable version of this trait. - See also
Any
for a version without theClone
requirement. - See also
Any
for a version without theClone + Send
requirements. - See also
Any
for a version without theClone + Send + Sync
requirements. - See also
Any
for a version without theClone + Sync
requirements.