Crate any_handle

Source

Structs§

AnyHandle
A thread-safe shared pointer to a value of any Any type, allowing for downcasting.
AnyHandleReadGuard
An immutable view into an AnyHandle. Multiple ReadGuards may exist for the same object at a given time, but ReadGuards and WriteGuards cannot exist for the same object at the same time.
AnyHandleWriteGuard
A mutable view into an AnyHandle. Only one WriteGuard may exist for the same object at a given time, but ReadGuards and WriteGuards cannot exist for the same object at the same time.

Traits§

Any
A trait to emulate dynamic typing.