entity_id/
lib.rs

1#![doc = include_str!("../README.md")]
2
3pub use entity_id_core::EntityId;
4
5#[cfg(feature = "derive")]
6pub use entity_id_derive::EntityId;
7
8/// Private internals needed to support the [`EntityId`](entity_id_derive::EntityId) derive macro.
9///
10/// **Do not** depend on these directly, or your code is likely to break.
11#[doc(hidden)]
12#[cfg(feature = "derive")]
13pub mod __private {
14    pub use entity_id_core::unprefix_id;
15}