usestd::hash::Hash;/// Query interface for determining whether a given entity is currently within a receiver's scope.
pubtraitInScopeEntities<E: Copy + Eq + Hash + Sync + Send> {/// Returns `true` if `entity` is currently tracked as in-scope.
fnhas_entity(&self, entity:&E)->bool;}