pub struct VecStorage<T>(/* private fields */);
Expand description
Vector storage. Uses a simple Vec
. Supposed to have maximum
performance for the components mostly present in entities.
Trait Implementations§
Source§impl<T> Default for VecStorage<T>
impl<T> Default for VecStorage<T>
Source§fn default() -> VecStorage<T>
fn default() -> VecStorage<T>
Returns the “default value” for a type. Read more
Source§impl<T> UnprotectedStorage<T> for VecStorage<T>
impl<T> UnprotectedStorage<T> for VecStorage<T>
Source§unsafe 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.
Source§unsafe fn get(&self, id: u32) -> &T
unsafe fn get(&self, id: u32) -> &T
Tries reading the data associated with an
Index
.
This is unsafe because the external set used
to protect this storage is absent.impl<T> DistinctStorage for VecStorage<T>
Auto Trait Implementations§
impl<T> Freeze for VecStorage<T>
impl<T> RefUnwindSafe for VecStorage<T>where
T: RefUnwindSafe,
impl<T> Send for VecStorage<T>where
T: Send,
impl<T> Sync for VecStorage<T>where
T: Sync,
impl<T> Unpin for VecStorage<T>where
T: Unpin,
impl<T> UnwindSafe for VecStorage<T>where
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> TryDefault for Twhere
T: Default,
impl<T> TryDefault for Twhere
T: Default,
Source§fn try_default() -> Result<T, String>
fn try_default() -> Result<T, String>
Tries to create the default.
Source§fn unwrap_default() -> Self
fn unwrap_default() -> Self
Calls
try_default
and panics on an error case.