Struct specs::VecStorage [−][src]
pub struct VecStorage<T>(_);
Vector storage. Uses a simple Vec. Supposed to have maximum
performance for the components mostly present in entities.
Trait Implementations
impl<T> Default for VecStorage<T>[src]
impl<T> Default for VecStorage<T>impl<T> UnprotectedStorage<T> for VecStorage<T>[src]
impl<T> UnprotectedStorage<T> for VecStorage<T>unsafe fn clean<B>(&mut self, has: B) where
B: BitSetLike, [src]
unsafe fn clean<B>(&mut self, has: B) where
B: BitSetLike, Clean the storage given a bitset with bits set for valid indices. Allows us to safely drop the storage. Read more
ⓘImportant traits for &'a mut Runsafe fn get(&self, id: Index) -> &T[src]
ⓘImportant traits for &'a mut R
unsafe fn get(&self, id: Index) -> &TTries reading the data associated with an Index. This is unsafe because the external set used to protect this storage is absent. Read more
ⓘImportant traits for &'a mut Runsafe fn get_mut(&mut self, id: Index) -> &mut T[src]
ⓘImportant traits for &'a mut R
unsafe fn get_mut(&mut self, id: Index) -> &mut TTries mutating the data associated with an Index. This is unsafe because the external set used to protect this storage is absent. Read more
unsafe fn insert(&mut self, id: Index, v: T)[src]
unsafe fn insert(&mut self, id: Index, v: T)Inserts new data for a given Index.
unsafe fn remove(&mut self, id: Index) -> T[src]
unsafe fn remove(&mut self, id: Index) -> TRemoves the data associated with an Index.
unsafe fn drop(&mut self, id: Index)[src]
unsafe fn drop(&mut self, id: Index)Drops the data associated with an Index.
impl<T> DistinctStorage for VecStorage<T>[src]
impl<T> DistinctStorage for VecStorage<T>Auto Trait Implementations
impl<T> Send for VecStorage<T> where
T: Send,
impl<T> Send for VecStorage<T> where
T: Send, impl<T> Sync for VecStorage<T> where
T: Sync,
impl<T> Sync for VecStorage<T> where
T: Sync,