pub struct BehaviorMutReadOnlyItem<'__w, T: Behavior> { /* private fields */ }Expand description
Automatically generated WorldQuery item type for BehaviorMutReadOnly, returned when iterating over query results.
Implementations§
Source§impl<T: Behavior> BehaviorMutReadOnlyItem<'_, T>
impl<T: Behavior> BehaviorMutReadOnlyItem<'_, T>
Trait Implementations§
Source§impl<T: Behavior> AsRef<T> for BehaviorMutReadOnlyItem<'_, T>
impl<T: Behavior> AsRef<T> for BehaviorMutReadOnlyItem<'_, T>
Source§impl<T: Behavior> Deref for BehaviorMutReadOnlyItem<'_, T>
impl<T: Behavior> Deref for BehaviorMutReadOnlyItem<'_, T>
Source§impl<T: Behavior> DetectChanges for BehaviorMutReadOnlyItem<'_, T>
impl<T: Behavior> DetectChanges for BehaviorMutReadOnlyItem<'_, T>
Source§fn is_changed(&self) -> bool
fn is_changed(&self) -> bool
Returns
true if this value was added or mutably dereferenced
either since the last time the system ran or, if the system never ran,
since the beginning of the program. Read moreSource§fn last_changed(&self) -> Tick
fn last_changed(&self) -> Tick
Returns the change tick recording the time this data was most recently changed. Read more
Source§fn changed_by(&self) -> MaybeLocation
fn changed_by(&self) -> MaybeLocation
The location that last caused this to change.
Auto Trait Implementations§
impl<'__w, T> Freeze for BehaviorMutReadOnlyItem<'__w, T>
impl<'__w, T> RefUnwindSafe for BehaviorMutReadOnlyItem<'__w, T>where
T: RefUnwindSafe,
impl<'__w, T> Send for BehaviorMutReadOnlyItem<'__w, T>
impl<'__w, T> Sync for BehaviorMutReadOnlyItem<'__w, T>
impl<'__w, T> Unpin for BehaviorMutReadOnlyItem<'__w, T>
impl<'__w, T> UnwindSafe for BehaviorMutReadOnlyItem<'__w, T>where
T: RefUnwindSafe,
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> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Converts
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>, which can then be
downcast into Box<dyn ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Converts
Rc<Trait> (where Trait: Downcast) to Rc<Any>, which can then be further
downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Converts
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Converts
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.