pub trait EntityType:
Debug
+ Clone
+ PartialEq
+ Serialize
+ for<'de> Deserialize<'de>
+ Sealed {
type Id: EntityId;
}Expand description
An entity type.
This trait cannot be implemented outside of this crate.
Required Associated Types§
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.