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.

Associated Types

Implementors