pub struct ComponentStore<T: HasSchema> { /* private fields */ }
Expand description

A typed wrapper around UntypedComponentStore.

Implementations§

source§

impl<T: HasSchema> ComponentStore<T>

source

pub fn into_untyped(self) -> UntypedComponentStore

Converts to the internal, untyped ComponentStore.

source

pub fn from_untyped(untyped: UntypedComponentStore) -> Self

Creates a ComponentStore from an UntypedComponentStore.

Panics

Panics if the schema doesn’t match T.

source

pub fn insert(&mut self, entity: Entity, component: T) -> Option<T>

Inserts a component for the given Entity index. Returns the previous component, if any.

source

pub fn get(&self, entity: Entity) -> Option<&T>

Gets an immutable reference to the component of Entity.

source

pub fn get_mut(&mut self, entity: Entity) -> Option<&mut T>

Gets a mutable reference to the component of Entity.

source

pub fn get_mut_or_insert( &mut self, entity: Entity, f: impl FnOnce() -> T ) -> &mut T

Get a mutable reference to component if it exists. Otherwise inserts T generated by calling parameter: f.

source

pub fn get_many_mut<const N: usize>( &mut self, entities: [Entity; N] ) -> [Option<&mut T>; N]

Get mutable references s to the component data for multiple entities at the same time.

Panics

This will panic if the same entity is specified multiple times. This is invalid because it would mean you would have two mutable references to the same component data at the same time.

source

pub fn remove(&mut self, entity: Entity) -> Option<T>

Removes the component of Entity. Returns Some(T) if the entity did have the component. Returns None if the entity did not have the component.

source

pub fn iter(&self) -> impl Iterator<Item = &T>

Iterates immutably over all components of this type. Very fast but doesn’t allow joining with other component types.

source

pub fn iter_mut(&mut self) -> impl Iterator<Item = &mut T>

Iterates mutably over all components of this type. Very fast but doesn’t allow joining with other component types.

Trait Implementations§

source§

impl<'a, T: HasSchema> ComponentIterBitset<'a, T> for ComponentStore<T>

source§

fn iter_with_bitset( &self, bitset: Rc<BitSetVec> ) -> ComponentBitsetIterator<'_, T>

Iterates immutably over the components of this type where bitset indicates the indices of entities. Slower than iter() but allows joining between multiple component types.

source§

fn iter_with_bitset_optional( &self, bitset: Rc<BitSetVec> ) -> ComponentBitsetOptionalIterator<'_, T>

Iterates immutably over the components of this type where bitset indicates the indices of entities where iterator returns an Option. None is returned for entities in bitset when Component is not in ComponentStore

source§

fn iter_mut_with_bitset( &mut self, bitset: Rc<BitSetVec> ) -> ComponentBitsetIteratorMut<'_, T>

Iterates mutable over the components of this type where bitset indicates the indices of entities. Slower than iter() but allows joining between multiple component types.

source§

fn iter_mut_with_bitset_optional( &mut self, bitset: Rc<BitSetVec> ) -> ComponentBitsetOptionalIteratorMut<'_, T>

Iterates mutably over the components of this type where bitset indicates the indices of entities where iterator returns an Option. None is returned for entities in bitset when Component is not in [ComponentStore

source§

fn bitset(&self) -> &BitSetVec

Read the bitset containing the list of entites with this component type on it.

source§

fn contains(&self, entity: Entity) -> bool

Check whether or not this component store has data for the given entity.

source§

fn component_store(&self) -> &ComponentStore<T>

Get ComponentStore for usage with generic types implementing ComponentIterBitset.
source§

impl<T: HasSchema> Default for ComponentStore<T>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<T: HasSchema> TryFrom<UntypedComponentStore> for ComponentStore<T>

§

type Error = SchemaMismatchError

The type returned in the event of a conversion error.
source§

fn try_from(untyped: UntypedComponentStore) -> Result<Self, Self::Error>

Performs the conversion.

Auto Trait Implementations§

§

impl<T> !RefUnwindSafe for ComponentStore<T>

§

impl<T> Send for ComponentStore<T>

§

impl<T> Sync for ComponentStore<T>

§

impl<T> Unpin for ComponentStore<T>where T: Unpin,

§

impl<T> !UnwindSafe for ComponentStore<T>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> FromWorld for Twhere T: Default,

source§

fn from_world(_world: &World) -> T

Creates Self using data from the given World.
source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> RawDefault for Twhere T: Default,

§

unsafe fn raw_default(dst: *mut c_void)

Write the default value of the type to the pointer. Read more
§

fn raw_default_cb() -> Unsafe<&'static (dyn Fn(*mut c_void) + Send + Sync)>

Get a callback suitable for [SchemaData].
§

impl<T> RawDrop for T

§

unsafe fn raw_drop(ptr: *mut c_void)

Write the default value of the type to the pointer. Read more
§

fn raw_drop_cb() -> Unsafe<&'static (dyn Fn(*mut c_void) + Send + Sync)>

Get a callback suitable for [SchemaData].
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V