We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72bb580 commit 243d2bbCopy full SHA for 243d2bb
crates/bevy_ecs/src/identifier/kinds.rs
@@ -1,3 +1,6 @@
1
+//! Module for defining the different [`super::Identifier`] kinds, which
2
+//! have different semantics with regards to their shared layout.
3
+
4
/// The kinds of ID that [`super::Identifier`] can represent. Each
5
/// variant imposes different usages of the low/high segments
6
/// of the ID.
crates/bevy_ecs/src/identifier/mod.rs
@@ -10,7 +10,7 @@ use std::{hash::Hash, num::NonZeroU32};
10
11
pub mod bits;
12
pub mod error;
13
-pub(crate) mod kinds;
+pub mod kinds;
14
pub(crate) mod masks;
15
16
/// A unified identifier for all entity and similar IDs.
0 commit comments