Struct bevy_trait_query::change_detection::Mut
source · pub struct Mut<'a, T: ?Sized> { /* private fields */ }
Expand description
Unique mutable borrow of an entity’s component
Implementations
Trait Implementations
sourceimpl<T: ?Sized> DetectChanges for Mut<'_, T>
impl<T: ?Sized> DetectChanges for Mut<'_, T>
sourcefn is_changed(&self) -> bool
fn is_changed(&self) -> bool
Returns
true
if this value was added or mutably dereferenced after the system last ran.sourcefn set_changed(&mut self)
fn set_changed(&mut self)
Flags this value as having been changed. Read more
sourcefn last_changed(&self) -> u32
fn last_changed(&self) -> u32
Returns the change tick recording the previous time this data was changed. Read more
sourcefn set_last_changed(&mut self, last_change_tick: u32)
fn set_last_changed(&mut self, last_change_tick: u32)
Manually sets the change tick recording the previous time this data was mutated. Read more
sourcefn bypass_change_detection(&mut self) -> &mut Self::Inner
fn bypass_change_detection(&mut self) -> &mut Self::Inner
Manually bypasses change detection, allowing you to mutate the underlying value without updating the change tick. Read more
Auto Trait Implementations
impl<'a, T: ?Sized> RefUnwindSafe for Mut<'a, T>where
T: RefUnwindSafe,
impl<'a, T: ?Sized> Send for Mut<'a, T>where
T: Send,
impl<'a, T: ?Sized> Sync for Mut<'a, T>where
T: Sync,
impl<'a, T: ?Sized> Unpin for Mut<'a, T>
impl<'a, T> !UnwindSafe for Mut<'a, T>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
. Read morefn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
. Read morefn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s. Read morefn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s. Read moresourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<S, T> ParallelSlice<T> for Swhere
T: Sync,
S: AsRef<[T]>,
impl<S, T> ParallelSlice<T> for Swhere
T: Sync,
S: AsRef<[T]>,
fn par_chunk_map<F, R>(
&self,
task_pool: &TaskPool,
chunk_size: usize,
f: F
) -> Vec<R, Global> ⓘwhere
F: Fn(&[T]) -> R + Send + Sync,
R: 'static + Send,
fn par_chunk_map<F, R>(
&self,
task_pool: &TaskPool,
chunk_size: usize,
f: F
) -> Vec<R, Global> ⓘwhere
F: Fn(&[T]) -> R + Send + Sync,
R: 'static + Send,
Splits the slice in chunks of size
chunks_size
or less and maps the chunks
in parallel across the provided task_pool
. One task is spawned in the task pool
for every chunk. Read morefn par_splat_map<F, R>(
&self,
task_pool: &TaskPool,
max_tasks: Option<usize>,
f: F
) -> Vec<R, Global> ⓘwhere
F: Fn(&[T]) -> R + Send + Sync,
R: 'static + Send,
fn par_splat_map<F, R>(
&self,
task_pool: &TaskPool,
max_tasks: Option<usize>,
f: F
) -> Vec<R, Global> ⓘwhere
F: Fn(&[T]) -> R + Send + Sync,
R: 'static + Send,
Splits the slice into a maximum of
max_tasks
chunks, and maps the chunks in parallel
across the provided task_pool
. One task is spawned in the task pool for every chunk. Read moreimpl<S, T> ParallelSliceMut<T> for Swhere
T: Send,
S: AsMut<[T]>,
impl<S, T> ParallelSliceMut<T> for Swhere
T: Send,
S: AsMut<[T]>,
fn par_chunk_map_mut<F, R>(
&mut self,
task_pool: &TaskPool,
chunk_size: usize,
f: F
) -> Vec<R, Global> ⓘwhere
F: Fn(&mut [T]) -> R + Send + Sync,
R: 'static + Send,
fn par_chunk_map_mut<F, R>(
&mut self,
task_pool: &TaskPool,
chunk_size: usize,
f: F
) -> Vec<R, Global> ⓘwhere
F: Fn(&mut [T]) -> R + Send + Sync,
R: 'static + Send,
Splits the slice in chunks of size
chunks_size
or less and maps the chunks
in parallel across the provided task_pool
. One task is spawned in the task pool
for every chunk. Read morefn par_splat_map_mut<F, R>(
&mut self,
task_pool: &TaskPool,
max_tasks: Option<usize>,
f: F
) -> Vec<R, Global> ⓘwhere
F: Fn(&mut [T]) -> R + Send + Sync,
R: 'static + Send,
fn par_splat_map_mut<F, R>(
&mut self,
task_pool: &TaskPool,
max_tasks: Option<usize>,
f: F
) -> Vec<R, Global> ⓘwhere
F: Fn(&mut [T]) -> R + Send + Sync,
R: 'static + Send,
Splits the slice into a maximum of
max_tasks
chunks, and maps the chunks in parallel
across the provided task_pool
. One task is spawned in the task pool for every chunk. Read more