Struct oxygengine_core::ecs::storage::VecStorage [−][src]
pub struct VecStorage<T>(_);
Expand description
Vector storage. Uses a simple Vec. Supposed to have maximum
performance for the components mostly present in entities.
as_slice() and as_mut_slice() indices correspond to
entity IDs. These can be compared to other VecStorages, to
other DefaultVecStorages, and to Entity::id()s for live
entities.
Trait Implementations
Returns the “default value” for a type. Read more
Clean the storage given a bitset with bits set for valid indices. Allows us to safely drop the storage. Read more
Tries reading the data associated with an Index.
This is unsafe because the external set used
to protect this storage is absent. Read more
Tries mutating the data associated with an Index.
This is unsafe because the external set used
to protect this storage is absent. Read more
Removes the data associated with an Index. Read more
Auto Trait Implementations
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
impl<T> Any for T where
T: Any,
impl<T> Any for T where
T: Any, pub fn get_type_id(&self) -> TypeIdMutably borrows from an owned value. Read more
Tries to create the default.
Calls try_default and panics on an error case.