pub trait IsContainer: Instance { }Expand description
Trait indicating that an entity is a container.
Implementors of IsContainer are considered to be container types,
which can hold zero or more elements. This trait is typically used in
conjunction with reflection mechanisms to dynamically inspect, access,
or modify the contents of a container at runtime.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.