Struct oxygengine_core::ecs::DefaultVecStorage [−][src]
pub struct DefaultVecStorage<T>(_);
Expand description
Vector storage, like VecStorage, but allows safe access to the
interior slices because unused slots are always initialized.
Requires the component to implement Default.
as_slice() and as_mut_slice() indices correspond to entity IDs.
These can be compared to other DefaultVecStorages, to other
VecStorages, 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 DefaultVecStorage<T> where
T: RefUnwindSafe, impl<T> Send for DefaultVecStorage<T> where
T: Send, impl<T> Sync for DefaultVecStorage<T> where
T: Sync, impl<T> Unpin for DefaultVecStorage<T> where
T: Unpin, impl<T> UnwindSafe for DefaultVecStorage<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.