pub trait Archetype {
// Required methods
fn store(self, container: &mut Container);
fn map(container: &mut Container);
}Expand description
Trait definition of Entities with the same set of components
Required Methods§
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.