Struct specs::prelude::DenseVecStorage
source · [−]pub struct DenseVecStorage<T> { /* private fields */ }
Expand description
Dense vector storage. Has a redirection 2-way table between entities and components, allowing to leave no gaps within the data.
Note that this only stores the data (T
) densely; indices
to the data are stored in a sparse Vec
.
as_slice()
and as_mut_slice()
indices are local to this
DenseVecStorage
at this particular moment. These indices
cannot be compared with indices from any other storage, and
a particular entity’s position within this slice may change
over time.
Trait Implementations
sourceimpl<T> Default for DenseVecStorage<T>
impl<T> Default for DenseVecStorage<T>
sourceimpl<T> UnprotectedStorage<T> for DenseVecStorage<T>
impl<T> UnprotectedStorage<T> for DenseVecStorage<T>
sourceunsafe fn clean<B>(&mut self, _has: B) where
B: BitSetLike,
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
sourceunsafe fn get(&self, id: Index) -> &T
unsafe fn get(&self, id: Index) -> &T
Tries reading the data associated with an Index
.
This is unsafe because the external set used
to protect this storage is absent. Read more
sourceunsafe fn get_mut(&mut self, id: Index) -> &mut T
unsafe fn get_mut(&mut self, id: Index) -> &mut T
Tries mutating the data associated with an Index
.
This is unsafe because the external set used
to protect this storage is absent. Read more
impl<T> DistinctStorage for DenseVecStorage<T>
Auto Trait Implementations
impl<T> RefUnwindSafe for DenseVecStorage<T> where
T: RefUnwindSafe,
impl<T> Send for DenseVecStorage<T> where
T: Send,
impl<T> Sync for DenseVecStorage<T> where
T: Sync,
impl<T> Unpin for DenseVecStorage<T> where
T: Unpin,
impl<T> UnwindSafe for DenseVecStorage<T> where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Pointable for T
impl<T> Pointable for T
sourceimpl<T> TryDefault for T where
T: Default,
impl<T> TryDefault for T where
T: Default,
sourcefn try_default() -> Result<T, String>
fn try_default() -> Result<T, String>
Tries to create the default.
sourcefn unwrap_default() -> Self
fn unwrap_default() -> Self
Calls try_default
and panics on an error case.