pub type EntityHashSet = HashSet<Entity, EntityHash>;
Expand description
A HashSet
pre-configured to use EntityHash
hashing.
Aliased Type§
struct EntityHashSet { /* private fields */ }
Trait Implementations§
source§impl WorldEntityFetch for &EntityHashSet
impl WorldEntityFetch for &EntityHashSet
source§type Ref<'w> = HashMap<Entity, EntityRef<'w>, EntityHash>
type Ref<'w> = HashMap<Entity, EntityRef<'w>, EntityHash>
The read-only reference type returned by
WorldEntityFetch::fetch_ref
.source§type Mut<'w> = HashMap<Entity, EntityMut<'w>, EntityHash>
type Mut<'w> = HashMap<Entity, EntityMut<'w>, EntityHash>
The mutable reference type returned by
WorldEntityFetch::fetch_mut
.source§type DeferredMut<'w> = HashMap<Entity, EntityMut<'w>, EntityHash>
type DeferredMut<'w> = HashMap<Entity, EntityMut<'w>, EntityHash>
The mutable reference type returned by
WorldEntityFetch::fetch_deferred_mut
,
but without structural mutability.