pub struct ChangeSet<T> { /* private fields */ }Expand description
Change set that can be collected from an iterator, and joined on for easy application to components.
§Example
pub struct Health(i32);
impl Component for Health {
type Storage = DenseVecStorage<Self>;
}
let a = world.create_entity().with(Health(100)).build();
let b = world.create_entity().with(Health(200)).build();
let changeset = [(a, 32), (b, 12), (b, 13)]
.iter()
.cloned()
.collect::<ChangeSet<i32>>();
for (health, modifier) in (&mut world.write_storage::<Health>(), &changeset).join() {
health.0 -= modifier;
}Implementations§
Trait Implementations§
Source§impl<T> Extend<(Entity, T)> for ChangeSet<T>where
T: AddAssign,
impl<T> Extend<(Entity, T)> for ChangeSet<T>where
T: AddAssign,
Source§fn extend<I>(&mut self, iter: I)where
I: IntoIterator<Item = (Entity, T)>,
fn extend<I>(&mut self, iter: I)where
I: IntoIterator<Item = (Entity, T)>,
Extends a collection with the contents of an iterator. Read more
Source§fn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
🔬This is a nightly-only experimental API. (
extend_one)Extends a collection with exactly one element.
Source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
🔬This is a nightly-only experimental API. (
extend_one)Reserves capacity in a collection for the given number of additional elements. Read more
Source§impl<'a, T> Join for &'a ChangeSet<T>
impl<'a, T> Join for &'a ChangeSet<T>
Source§type Value = &'a DenseVecStorage<T>
type Value = &'a DenseVecStorage<T>
Type of joined storages.
Source§unsafe fn open(
self,
) -> (<&'a ChangeSet<T> as Join>::Mask, <&'a ChangeSet<T> as Join>::Value)
unsafe fn open( self, ) -> (<&'a ChangeSet<T> as Join>::Mask, <&'a ChangeSet<T> as Join>::Value)
Open this join by returning the mask and the storages. Read more
Source§unsafe fn get(
value: &mut <&'a ChangeSet<T> as Join>::Value,
id: u32,
) -> <&'a ChangeSet<T> as Join>::Type
unsafe fn get( value: &mut <&'a ChangeSet<T> as Join>::Value, id: u32, ) -> <&'a ChangeSet<T> as Join>::Type
Get a joined component value by a given index.
Source§fn join(self) -> JoinIter<Self> ⓘwhere
Self: Sized,
fn join(self) -> JoinIter<Self> ⓘwhere
Self: Sized,
Create a joined iterator over the contents.
Source§fn maybe(self) -> MaybeJoin<Self>where
Self: Sized,
fn maybe(self) -> MaybeJoin<Self>where
Self: Sized,
Returns a
Join-able structure that yields all indices, returning None for all
missing elements and Some(T) for found elements. Read moreSource§fn is_unconstrained() -> bool
fn is_unconstrained() -> bool
If this
Join typically returns all indices in the mask, then iterating over only it
or combined with other joins that are also dangerous will cause the JoinIter/ParJoin to
go through all indices which is usually not what is wanted and will kill performance.Source§impl<'a, T> Join for &'a mut ChangeSet<T>
impl<'a, T> Join for &'a mut ChangeSet<T>
Source§type Value = &'a mut DenseVecStorage<T>
type Value = &'a mut DenseVecStorage<T>
Type of joined storages.
Source§unsafe fn open(
self,
) -> (<&'a mut ChangeSet<T> as Join>::Mask, <&'a mut ChangeSet<T> as Join>::Value)
unsafe fn open( self, ) -> (<&'a mut ChangeSet<T> as Join>::Mask, <&'a mut ChangeSet<T> as Join>::Value)
Open this join by returning the mask and the storages. Read more
Source§unsafe fn get(
v: &mut <&'a mut ChangeSet<T> as Join>::Value,
id: u32,
) -> <&'a mut ChangeSet<T> as Join>::Type
unsafe fn get( v: &mut <&'a mut ChangeSet<T> as Join>::Value, id: u32, ) -> <&'a mut ChangeSet<T> as Join>::Type
Get a joined component value by a given index.
Source§fn join(self) -> JoinIter<Self> ⓘwhere
Self: Sized,
fn join(self) -> JoinIter<Self> ⓘwhere
Self: Sized,
Create a joined iterator over the contents.
Source§fn maybe(self) -> MaybeJoin<Self>where
Self: Sized,
fn maybe(self) -> MaybeJoin<Self>where
Self: Sized,
Returns a
Join-able structure that yields all indices, returning None for all
missing elements and Some(T) for found elements. Read moreSource§fn is_unconstrained() -> bool
fn is_unconstrained() -> bool
If this
Join typically returns all indices in the mask, then iterating over only it
or combined with other joins that are also dangerous will cause the JoinIter/ParJoin to
go through all indices which is usually not what is wanted and will kill performance.Source§impl<T> Join for ChangeSet<T>
impl<T> Join for ChangeSet<T>
Source§type Value = DenseVecStorage<T>
type Value = DenseVecStorage<T>
Type of joined storages.
Source§unsafe fn open(
self,
) -> (<ChangeSet<T> as Join>::Mask, <ChangeSet<T> as Join>::Value)
unsafe fn open( self, ) -> (<ChangeSet<T> as Join>::Mask, <ChangeSet<T> as Join>::Value)
Open this join by returning the mask and the storages. Read more
Source§unsafe fn get(
value: &mut <ChangeSet<T> as Join>::Value,
id: u32,
) -> <ChangeSet<T> as Join>::Type
unsafe fn get( value: &mut <ChangeSet<T> as Join>::Value, id: u32, ) -> <ChangeSet<T> as Join>::Type
Get a joined component value by a given index.
Source§fn join(self) -> JoinIter<Self> ⓘwhere
Self: Sized,
fn join(self) -> JoinIter<Self> ⓘwhere
Self: Sized,
Create a joined iterator over the contents.
Source§fn maybe(self) -> MaybeJoin<Self>where
Self: Sized,
fn maybe(self) -> MaybeJoin<Self>where
Self: Sized,
Returns a
Join-able structure that yields all indices, returning None for all
missing elements and Some(T) for found elements. Read moreSource§fn is_unconstrained() -> bool
fn is_unconstrained() -> bool
If this
Join typically returns all indices in the mask, then iterating over only it
or combined with other joins that are also dangerous will cause the JoinIter/ParJoin to
go through all indices which is usually not what is wanted and will kill performance.Auto Trait Implementations§
impl<T> Freeze for ChangeSet<T>
impl<T> RefUnwindSafe for ChangeSet<T>where
T: RefUnwindSafe,
impl<T> Send for ChangeSet<T>where
T: Send,
impl<T> Sync for ChangeSet<T>where
T: Sync,
impl<T> Unpin for ChangeSet<T>where
T: Unpin,
impl<T> UnwindSafe for ChangeSet<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.